Backtesting Arena

Backtesting Arena

RSI Overbought / Oversold master

RSI Overbought / Oversold Strategy

The textbook RSI strategy — buy when oversold (RSI < 30), sell when overbought (RSI > 70). Best in sideways markets.

Quick Facts

Type:
Mean Reversion
Plan:
Free
Asset Classes:
Crypto · Stocks · ETF · Commodities · Forex
Indicators:
RSI

Platform Backtest

CAGR
+15.1%
Win Rate
67%
Max DD
-50%

Default parameters · BTCUSDT · 1d · 4 years · B&H +18.1%

How It Works

This is the canonical RSI strategy described in J. Welles Wilder's 1978 book New Concepts in Technical Trading Systems. The Relative Strength Index oscillates between 0 and 100 — measuring whether recent price action has been dominated by gains or losses.

Entry signal: when the RSI drops below the oversold threshold (default 30), the asset is considered statistically oversold — a buy signal.

Exit signal: when the RSI rises above the overbought threshold (default 70), the asset is considered overbought — a sell signal.

The core assumption is mean reversion: that prices revert towards their average after extreme moves. This works beautifully in sideways and ranging markets but breaks down in strong trends, where the RSI can stay above 70 for weeks while the asset keeps grinding higher (or below 30 while it crashes further). For trending markets, consider RSI/SMA Cross instead — it adapts to changing conditions.

Entry & Exit Rules

Entry

  • RSI drops below the Oversold threshold
  • Position is currently flat

Exit

  • RSI rises above the Overbought threshold
  • Position is currently long

Parameters

NameDefaultRangeDescription
RSI Period14250Number of candles for RSI calculation. Default 14, the canonical Wilder value.
Oversold Level30550RSI value below which a buy signal fires. Default 30. Lower = stricter, fewer trades.
Overbought Level705095RSI value above which a sell signal fires. Default 70. Higher = let winners run longer.

Live Backtest

Strategy CAGR
+15.1%
Buy & Hold CAGR
+18.1%
Trades
13
Win Rate
67%
Y-axis: Equity (USD, $10,000 starting capital)2022-04-28 → 2026-04-27

BTCUSDT · 1d · 4 years · default parameters · refreshed daily

Run with my own parameters →

Pseudo-Code

expand
// Entry
if RSI(rsi_period) < oversold:
  if position.is_flat:
    BUY

// Exit
if RSI(rsi_period) > overbought:
  if position.is_long:
    SELL

Strengths & Weaknesses

Strengths

  • Simple and well-known — easy to validate against literature
  • Works on all asset classes
  • Pure mean-reversion, distinct from trend strategies
  • Default 14/30/70 values are battle-tested since 1978

Weaknesses

  • Breaks down in trending markets — RSI can stay extreme for weeks
  • False signals during strong moves (e.g. blow-off tops)
  • No exit signal if RSI never rebounds above overbought — position can be held indefinitely
  • Fixed thresholds don't adapt to volatility regimes

Frequently Asked Questions

When does this strategy fail?

Strong directional trends are the killer. In a sustained bull market, the RSI can stay above 70 for months — you sell early and watch the price keep rising without you. In a crash, RSI can stay below 30 while the asset drops further. Combine with a trend filter (200 WMA, ATR Volatility) on Pro+ plans to avoid trading against strong regimes.

Should I use 30/70 or different thresholds?

30/70 are the literature defaults and a good starting point. Some traders prefer 20/80 for stricter entries (fewer but higher-conviction trades), or 25/75 as a middle ground. For volatile assets like Bitcoin, slightly stricter thresholds (e.g. 25/75) often filter noise better.

How does this differ from RSI/SMA Cross?

Both use the RSI but in fundamentally different ways. This strategy uses fixed thresholds (30/70) — pure mean reversion. RSI/SMA Cross uses a dynamic threshold (the SMA of the RSI itself), which adapts to market conditions and works better in trending markets. They're complementary, not alternatives.

Related Strategies

Don't want to backtest yourself?

Check out our Strategy Insights Reports — pre-baked deep-dives with historical results, comparisons, and market context.

📊 View Reports →

Ready to backtest?

Open the Arena →