Backtest vs live trading: what changes after validation
A backtest answers whether rules were viable on historical data. Demo checks the operating path. Neither guarantees that live orders will reproduce the simulated result.
A backtest simplifies market behavior
Candles, modeled fees, and deterministic fills cannot fully reproduce order-book depth, latency, partial fills, rejected orders, or exchange interruptions.
Demo validates mechanics, not profitability
Demo or testnet can verify API permissions, order sizing, state transitions, exits, and notifications. Its liquidity and fills may still differ from mainnet.
Live needs smaller exposure and stop conditions
Begin below the tested risk ceiling, monitor divergence, and define when to pause. A mismatch is evidence to investigate, not noise to ignore.
Define the promotion gate
Do not move a strategy forward until every stage has an explicit pass condition.
- Write what the backtest must prove, including minimum sample size and maximum acceptable drawdown.
- Define which order and state behaviors the demo stage must reproduce without unexplained errors.
- Set the initial live exposure, maximum divergence, and exact condition that pauses the bot.
Minimum research record
Keep these inputs with every result so the test can be reproduced and compared without relying on memory.
- Exchange, market type, symbols, timeframe, and exact date range.
- Starting balance, position sizing, leverage, and risk limits.
- Entry, exit, stop-loss, take-profit, and filter configuration.
- Fee, funding, and execution assumptions used by the simulation.
- Net result, drawdown, trade count, losing periods, and known anomalies.
What this evidence cannot prove
A backtest cannot guarantee future returns or fully reproduce liquidity, order-book depth, latency, slippage, rejected orders, exchange downtime, or future funding rates. Use the result to reject weak assumptions and design the next controlled test—not as permission to take unlimited risk.
Create a gate between every stage
Use the guided learning track to review the backtest, connect a demo environment, and set risk controls before a live launch.