.

Stochastic RSI perfect Combination - Amibroker AFL Code

Click Image To Enlarge. Please Rate And Comment.

Stochastic RSI perfect Combination

_SECTION_BEGIN("CCT StochasticRSI");

period = 14;
StoRSI =EMA(100*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI( period ) , period ) ) - LLV(RSI( period ), period ) ) ),3);
Plot( StoRSI , "StoRSI", IIf(StoRSI > Ref(StoRSI,-1),colorGreen, colorRed), styleThick,styleOwnScale);
Plot( EMA(StoRSI,3) , "", colorBlue, styleThick,styleOwnScale);
Plot( Ref(StoRSI,-2) , "", colorWhite, styleThick,styleOwnScale);


//GraphXSpace = 2;
_SECTION_END();
Previous Post Next Post