The most famous chart signal in existence: the 50 crossing the 200.
When the 50-period moving average crosses above the 200, the trend has turned up — stay long. When it crosses below (the 'death cross'), stay short. The signal every financial news outlet reports when it happens to an index.
Moving-average crossovers date to the earliest days of technical analysis; the 50/200 daily pair became THE canonical setting via decades of equity-market folklore and media coverage.
Long while SMA(50) > SMA(200), short while SMA(50) < SMA(200), on 1-hour candles. Exits: 3-ATR trailing stop, 200-bar time exit (re-enters while the cross holds).
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": "Golden Cross (SMA 50/200)",
"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": "sma",
"period": 50,
"op": ">",
"vs_indicator": "sma",
"vs_period": 200
}
],
"short": [
{
"indicator": "sma",
"period": 50,
"op": "<",
"vs_indicator": "sma",
"vs_period": 200
}
]
},
"exit": {
"trail_atr": 3,
"time_exit_bars": 200
}
}
]
}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