Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
The Tema StochRSI formula I use is Tema smoothed and I subtract 0.5 so I can plot it as a histogram. It's:
Stochastic RSI - Tema Smoothed
Periods := Input("Enter Tema Smoothing Periods",5,233,13);
Tema(((RSI(Periods) - LLV(RSI(Periods),Periods))/
((0.0001+HHV(RSI(Periods),Periods)) -...