Trendoscope

Just Another RSI

This is slightly different implementation of RSI using arrays. But, it also comes with a twist.

Formula for standard RSI can be found here: www.investopedia.com/terms/r/rsi.asp


If there is green candle, gain for the candle is equal to price movement from previous bar and loss for that candle is 0. Similarly in case of red candle, loss is considered to be movement from previous candle whereas gain is 0. Also, as mentioned in step2, on each bar, average of previous bar gains/losses are merged with present candle gain/loss.

New Process
  • Gain is considered only on green candles. Hence, there is no zero gain candles
  • Loss is considered only on red candles. Hence, there is no zero loss candles
  • Average or median of last N gains and losses are considered. Hence, the movement mainly tell us the strength between bullish and bearish candles.
  • Let us forget about seeing it as overbought and oversold area and look at it as bullish and bearish region.

How it is different
Since, gain and loss are only considered if there are gain and loss, this index represents the strength between bullish and bearish candles without looking at price movement. Hence, the index has capability to go in opposite direction of the price representing price movement is not supported by strength.

Another advantage of this implementation is it allows using variable length for the method. In case of RSI, length has to be constant. It cannot be variable which can change every bar. But, we do not have that constraint in this implementation due to use of arrays.

At present, this is purely experimental. I will look forward to study this more with respect to divergence and for use in trend following methods.

開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?