TradingView
ChaosTrader
١١ أيلول سبتمبر ٢٠١٦ ٢٢:٥٣

StochRSI 

Euro Fx/U.S. DollarFXCM

الوصف

StorchRSI indicator example.
التعليقات
surya092016
Can you specifically elaborate how the stochastic RSI is derived. The unsmoothed StochRSI is also do not give correct result.100x(( Current RSI (say14)-Min(RSI14 lookback)) / ((max (Rsi14 lookback)-Min (RSI14 lookback)). Then I am not able to calculate the Smoothed version applying K% (which series) and D% (which series). It will be great help Sir.
RomanLosev
Thanks.

Edited for Version 5

-----------

source = close
lengthRSI = input(8)
lengthStoch = input(5)
smoothK = input(3)
smoothD = input(3)
OverSold = input(25), OverBought = input(75)
rsi1 = ta.rsi(source, lengthRSI)
k = ta.sma(ta.stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = ta.sma(k, smoothD)
hline(OverSold,color=color.blue)
hline(OverBought,color=color.blue)
plot(k, color=color.black,title="k-line")
plot(d, color=color.fuchsia,title="d-line",linewidth=1)

np
ramymsaleh
Thank you
Lalitbhai
Rghhh
MYHANH84
Thank you
saucius
Wonderful
المزيد