RSI is one of the oldest and most well-known indicators in trading. It's also one of the most misunderstood. Most people learn "buy below 30, sell above 70" and then lose money applying that rule mechanically. Used correctly, RSI is genuinely useful — but the right way to use it is more nuanced than the textbook version.
This article walks through what RSI actually measures, the failure modes of naive RSI strategies, and the variations that work.
The Relative Strength Index is a momentum oscillator that compares average gains to average losses over a lookback period. Standard lookback is 14 periods.
RSI ranges from 0 to 100. Higher values mean recent moves have been mostly upward; lower values mean recent moves have been mostly downward.
The textbook interpretation:
This works in theory because momentum often does mean-revert. It fails in practice because momentum can also persist for long stretches, especially in trending markets.
Three common failure modes:
**Strong trends produce extended oversold/overbought periods.** During a strong uptrend, RSI can stay above 70 for weeks. A trader who shorts every "overbought" reading gets repeatedly stopped out as the trend continues. Same for shorting bear markets when RSI prints sub-30 for days.
**Mean reversion is asymmetric.** Markets often reach oversold conditions quickly (during fear) but recover slowly. RSI signals trigger at the bottom, but the actual reversal might be 50% lower or weeks later. Timing matters; pure RSI signals don't time well.
**The 14-period lookback is rarely optimal.** It's the default because it was the default in Wilder's original 1978 publication. Modern markets, especially crypto, may respond better to different lookback periods depending on volatility and timeframe.
The result: naive RSI users lose to traders who understand the indicator's limitations.
The most reliable RSI strategy adds a trend filter. Trade RSI mean reversion only when the larger market is range-bound, not trending.
The key idea: ADX < 20 means the market is range-bound. Mean reversion works in range-bound conditions. In trending conditions (ADX > 25), ignore RSI signals or use them only in the direction of the trend.
Bullish divergence: price makes a lower low, RSI makes a higher low. This indicates declining bearish momentum even as price drops — often a leading indicator of trend reversal.
Bearish divergence: price makes a higher high, RSI makes a lower high. Declining bullish momentum despite continued price gains. Often precedes corrections.
Divergences are slower signals than crossovers but more reliable. The challenge is identifying them programmatically:
This identifies basic divergence patterns. Real implementations refine this with peak prominence thresholds, time-decay weights, and additional confirmation signals.
Instead of fixed 30/70 levels, use volatility-adjusted thresholds:
In low-volatility regimes, the thresholds tighten (maybe 35/65). In high-volatility regimes, they widen (maybe 20/80). This adapts to changing conditions automatically.
The 14-period lookback isn't sacred. Test alternatives:
For crypto on hourly timeframes, 9-21 period RSI tends to work best. Below 9 produces too much noise; above 21 lags too much.
Test via walk-forward analysis (see our walk-forward optimization article). If the optimal RSI period jumps wildly between windows, the strategy is over-parameterised.
A few things to avoid:
**Trading every RSI cross of 30 or 70.** Without a regime filter, this generates too many false signals in trending markets.
**Using RSI as a sole entry signal.** RSI works as a confirmation indicator, not a stand-alone trigger. Combine with price action (support/resistance levels), trend filters (ADX or moving averages), or candlestick patterns.
**Shortening the RSI period to get "more signals."** More signals don't help if they're noise. The standard 14 period is conservative for a reason.
Q: What's the best RSI period for crypto?
Depends on timeframe and asset. For BTC and ETH on 1-hour timeframe, 9-14 period RSI works well. For 4-hour timeframe, 14-21. For altcoins, slightly faster (7-12) is often better due to higher volatility.
Q: Should I use simple or exponential moving average for RSI calculation?
Wilder's original used simple moving average. Most modern implementations use exponential (smoother). Both work; exponential is slightly more responsive. Stick with one and don't switch — backtests don't compare across.
Q: Can I use RSI on longer timeframes?
Yes. Daily and weekly RSI work well for swing trading. The principles are the same; just expect signals to be less frequent and the holding periods longer.
Q: How does RSI compare to other momentum indicators?
RSI, Stochastic, and Williams %R are all bounded momentum oscillators with very similar behaviour. They give similar signals 80%+ of the time. Pick one and use it consistently rather than chasing different indicators looking for variance.