PureBytes Links
Trading Reference Links
|
Hello,
I answered to your question 2 days ago. Unfortunatelly,
it seems that YahooGroups server delays delivery and even
don't deliver some posts recently.
(They had some server maintenance work + downtime yesterday, and this may be the reason)
BTW, my answer was:
Yes you can, just use the following formula:
graph0 = rsi( 7 );
graph1 = rsi( 17 );
graph2 = rsi( 45 );
graph1style = graph2style = 1;
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: <brett_f1@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, May 11, 2001 11:18 PM
Subject: [amibroker] Re: Indicator Overlays
> OK, I've got the answer to my own question now. Here's my solution
> for anyone else interested.
>
> /* by Brett Forrester 5-11-2001
>
> RSI overlays of 7, 17, and 45 period with a 7 period smoothing factor
> */
>
> maxgraph = 10;
>
> A = ma(rsi ( 7 ), 7 );
> graph0 = A;
> B = ma(rsi ( 17 ), 7 );
> graph1 = B;
> C = ma(rsi ( 45 ), 7 );
> graph3 = C;
> title = name() + " - RSI (7) =" + writeval( A) + " %, RSI (17) =" +
> writeval( B) + " %, RSI (45) =" + writeval( C) + " % ";
>
> Brett
>
> --- In amibroker@xxxx, brett_f1@xxxx wrote:
> > Can I overlay RSI for 7, 17, and 45 bar periods?
> >
> > Also, can I apply a smoothing average of say 7 bars to these
> averages?
> >
> > Brett
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|