Hi Gary, "with a fast stochastic i.e. no smoothing?
I might as well add 2 cents here, but I have a question for all the smart guys... I consider the standard stochrsi 13/13 a fast stochastic ie 1 period internal smoothing...yes/no?
the second indicator allows for slower stoch
here's my stochrsi soup...
stochrsi:
mp1:=Input("RSI Periods",1,377,13); mp2:=Input("EMA Periods",1,377,13);
Mov((RSI(mp1)-LLV(RSI(mp1),mp1))/ (.0000001+(HHV(RSI(mp1),mp1)-(LLV(RSI(mp1),mp1)))),mp2,E)*100
with slowing:
mp1:=Input("RSI Periods",1,377,13); mp2:=Input("EMA Periods",1,377,13); mp3:=Input("Slowing Periods",1,377,13);
Mov(Sum((RSI(mp1)-LLV(RSI(mp1),mp1)),mp3)/ Sum((.0000001+(HHV(RSI(mp1),mp1)-(LLV(RSI(mp1),mp1)))),mp3),mp2,E)*100
bdog |