|
Indicators aren't the same.
The Stochastic RSI indicators posted in this thread don't seem to give the same divergence signals as the VT Trader version.
Can someone please make this indicator for MQ? ...
{ Relative Strength Index}
rsi_r:= (CLOSE - ref(CLOSE,-1));
rsi_rs := Wilders(if(rsi_r>0,rsi_r,0),Periods) / Wilders(if(rsi_r<0,Abs(rsi_r),0),Periods);
RS:= 100-(100/(1+rsi_rs));
{Stochastic RSI Oscillator}
StRSI := Mov( ( ( ( RS - LLV( RS,PerK ) ) /
( HHV(RS,PerK) - LLV( RS,PerK) ) ) * 100 ) , Sl, E );
... That is the formula from VT Trader, don't know if it helps.
|