[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Indicator Overlays



PureBytes Links

Trading Reference Links

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