QUESTION
Why do most trading bots fail?
SHORT ANSWER
Overfitting is the largest single cause. A strategy tuned until its backtest looked good describes one period of history rather than any repeatable behaviour, and live trading is the first honest test it faces.
The mechanism is rarely deliberate fraud. It happens through ordinary iteration — adjust a threshold, the backtest improves, keep the change — and after enough of those the system is shaped entirely by the noise in one sample. The resulting equity curve is genuinely beautiful and genuinely meaningless.
The second cause is hidden risk. Martingale and grid recovery produce smooth results for long periods by deferring losses rather than taking them, and the eventual sequence that the account cannot fund arrives without warning.
The third is cost blindness. Strategies tested with a fixed narrow spread and no slippage are profitable in a market that does not exist. On gold, where spreads widen exactly when signals cluster, this alone can flip the sign of the result.
What survival looks like
The defences are unglamorous: hold data back and test on it once, prefer fewer parameters, model costs pessimistically, and publish what failed alongside what worked. We tested 34 strategies and ship 4 — the other 24 and their reasons are public, because a vendor showing only their winners has told you nothing about their process.
We also removed a feature that improved in-sample results. Scaling reward-to-risk by market regime looked better on the fitted period and turned out to be fitting noise; a single 2.0 ratio everywhere made the system better by making it simpler.
Related questions
- Are trading bots profitable?Some are, most are not, and the ones that are profitable produce modest returns with real drawdo…
- Why is my trading bot losing money?The four causes that account for nearly all of it are: the strategy was overfitted to its backte…
- Do AI trading bots actually work?Most products marketed as AI trading bots are conventional rule-based systems with the label att…
Educational information only, not financial advice. Trading leveraged products carries substantial risk of loss. Last updated 2026-08-11.