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

Rsi double array



PureBytes Links

Trading Reference Links

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


stephane