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

Re: Rsi double array



PureBytes Links

Trading Reference Links

I have posted the
RSI H/L System
by 13 Oct 2001, where RSI(High,12) and RSI(Low,12) were constructed 
and one more step for Keltner bands application.
I was not satisfied. The RSIH was not always above RSIC and RSIL.
As a result, the basic Keltner principle was not fulfilled.
The best application was the RSIt, ie the RSI of MACD, for individual 
and composite applications.


--- In amibroker@xxxx, "nenapacwanfr" <nenapacwanfr@xxxx> wrote:
> Dimitri,
> 
> have you already tried to apply a Rsi based on two differents array.
> I mean for example
> var1=high;
> var2=low;
> up= iif(var1>ref(var1,-1),var1-ref(var1,-1),0);
> down=iif(var2<ref(var2,-1),ref(var2,-1)-var2,0);
> 
> ......
> 
> but it could be var1= close of a composite
> var2=close of an other composite
I have not applied yet RSI over composite tickers.
Any bright idea ?
DT
> stephane