The famous ultra-short RSI dip-buy from 'Short Term Trading Strategies That Work'.
A 2-period RSI under 10 marks a violent short-term dip that tends to snap back within days. One of the most backtested setups in retail trading.
Larry Connors and Cesar Alvarez, 'Short Term Trading Strategies That Work' (2008). Originally a daily-bar S&P strategy filtered by the 200-day moving average.
Long while RSI(2) < 10, short while RSI(2) > 90, on 1-hour candles. Exits: 10-bar time exit, 3% stop loss.
The backtest above is history. Since publication, this exact spec also runs in our nightly forward-test harness (the same one behind /forward-tests): only trades entered after publication count, open positions are never force-closed, and the record publishes either way.
No closed forward trades recorded yet — the record accrues nightly as trades complete their full exit windows.
{
"name": "Connors RSI-2",
"universe": [
"BTC/USDT:USDT",
"ETH/USDT:USDT",
"SOL/USDT:USDT",
"BNB/USDT:USDT",
"XRP/USDT:USDT",
"DOGE/USDT:USDT",
"LINK/USDT:USDT",
"AVAX/USDT:USDT"
],
"risk": {
"risk_per_trade_pct": 1,
"leverage_cap": 3,
"max_daily_loss_pct": 5,
"max_dd_halt_pct": 25
},
"sleeves": [
{
"name": "main",
"timeframe": "1h",
"entry": {
"type": "rule",
"logic": "all",
"long": [
{
"indicator": "rsi",
"period": 2,
"op": "<",
"value": 10
}
],
"short": [
{
"indicator": "rsi",
"period": 2,
"op": ">",
"value": 90
}
]
},
"exit": {
"stop_loss_pct": 3,
"time_exit_bars": 10
}
}
]
}Every strategy graded on identical terms: 1-hour candles, 8 liquid USDT perpetuals (BTC, ETH, SOL, BNB, XRP, DOGE, LINK, AVAX), ~6 years of data with a chronological train/test split, real cost hurdle, 1% risk-per-trade sizing, 3x leverage cap. All numbers are out-of-sample (test window only).
A Grade is a historical, out-of-sample statistical measurement — not investment advice, a prediction, or a guarantee. Most strategies fail; a passing grade can stop working as markets change. Risk disclosure