Modern Techniques to Improve Technical Analysis
Using a New RSI Technique to Improve Trading Signals
RSI techniques are numerous and they improve the way we use it. This article discusses the range reversal technique, a new way of validating the RSI’s signals.
Quick Introduction to the RSI
The relative strength index (RSI) is a widely used momentum oscillator that plays a pivotal role in technical analysis, helping traders and investors assess the strength and potential direction of price movements in financial markets. Developed by J. Welles Wilder Jr., the RSI has a rich history dating back to the late 1970s and has become a fundamental tool for market analysis.
The RSI is primarily calculated using two key components: the average gain and the average loss over a specified period. Wilder’s original formula for the RSI involved a 14-day lookback period. The formula is a complex one, but it essentially normalizes price movements to a scale of 0 to 100, with readings above 70 indicating overbought conditions and readings below 30 suggesting oversold conditions.
If you want to see more of my work, you can visit my website for the books catalogue by simply following this link:
Using the Range Reversal Technique on the RSI
The range reversal technique uses a combination of the conservative RSI technique and a filter that looks for a ping-pong state. But what are those two terms?
The conservative RSI technique signals a buy opportunity whenever the RSI shapes a value above the oversold level after having been below it for at least one period, and signals a short opportunity whenever the RSI shapes a value below the overbought level after having been above it for at least one period.
The ping-pong state is the stable and healthy state of an oscillator that goes from the lower values to the higher values in a regular way. This means that it does not spend too much time on either ends (a condition of a severely trending market).
Take a look at the following chart. This is the reverse of a ping-pong state, where the RSI is glued to the bottom values (below 50) for an extended period of time.
The range reversal RSI technique uses the signals of the conservative technique but takes into account the following conditions:
For a bullish signal to be valid, the value from 55 periods ago on the RSI must be above 50%
For a bearish signal to be valid, the value from 55 periods ago on the RSI must be below 50%.
A variation on the range reversal technique is that to consider any value within the 55 periods.
The above chart therefore shows only one bullish signal. If we took only the conservative RSI technique (without the addition of the ping-pong state condition), then we would have had multiple false signals.
The next chart shows how false signals have been avoided within the pink circle. A normal RSI technique would have fallen into this trap.
The following chart shows more signals generated from the range reversal technique:
Use the following code in TradingView (PineScript) to incorporate the technique:
//@version=5
indicator("K's RSI Range Reversal", overlay = true)
// Calculate RSI
rsi_length = 14
rsi = ta.rsi(close, rsi_length)
bullish_signal = rsi > 30 and rsi[1] < 30 and rsi[55] > 50
bearish_signal = rsi < 70 and rsi[1] > 70 and rsi[55] < 50
// Plot the counter value
plotshape(bullish_signal, style = shape.triangleup, color = color.green, location = location.belowbar, size = size.small)
plotshape(bearish_signal, style = shape.triangledown, color = color.red, location = location.abovebar, size = size.small)
You can also check out my other newsletter The Weekly Market Sentiment Report that sends tactical directional views every weekend to highlight the important trading opportunities using a mix between sentiment analysis (COT reports, Put-Call ratio, Gamma exposure index, etc.) and technical analysis.
Hello Sofien,
But why 55 bars ago and level 50 ?
thx