The most famous experiment in trading history: 1983 rules, graded on assets that didn't exist yet.
Richard Dennis bet William Eckhardt that trading could be taught to anyone. His 'Turtles' — recruited by newspaper ad, trained for two weeks — traded a fully mechanical Donchian breakout: buy a 20-day high, sell a 20-day low, risk a fixed fraction per trade, cut at 2N. Several went on to run funds. It is the origin story of systematic trend following.
Richard Dennis & William Eckhardt, 1983–84. The exact rules were published by former Turtles (Curtis Faith's 'Way of the Turtle' and the free 'Original Turtle Trading Rules' PDF), making this one of the few legendary systems with a canonical, checkable spec.
Long when price breaks above the 20-bar high, short when it breaks below the 20-bar low (System 1), on 1-hour candles. Exits: 2-ATR catastrophic stop (the Turtles' 2N rule), 2-ATR trailing stop.
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": "Turtle Trading System 1 (20-bar breakout)",
"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": "price",
"period": 1,
"op": ">",
"vs_indicator": "donchian_hi",
"vs_period": 20
}
],
"short": [
{
"indicator": "price",
"period": 1,
"op": "<",
"vs_indicator": "donchian_lo",
"vs_period": 20
}
]
},
"exit": {
"cat_stop_atr": 2,
"trail_atr": 2
}
}
]
}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