What a Maximum Drawdown Limit Actually Measures
Drawdown is the percentage an account has fallen from its highest recorded value. If an account grows to $50,000 and then falls to $40,000 before recovering, that's a 20% drawdown, regardless of whether the account was ever profitable overall. A maximum drawdown limit is simply a rule that says: if the account falls this far from its peak, trading stops.
It's a different measure than total loss. An account can be up 30% for the year and still have suffered a 25% drawdown along the way, if it grew, gave much of it back, then grew again. The limit exists to catch the "gave much of it back" part before it becomes "gave all of it back."
Every serious backtest reports a maximum historical drawdown alongside total return, and for good reason. A strategy that returned 40% a year but occasionally lost 60% of the account along the way is a very different proposition than one that returned 15% a year with a 10% worst-case drawdown, even though the first number looks better in isolation.
How to Size a Maximum Drawdown Limit
The starting point is the strategy's own backtested drawdown history. Say a backtest over ten years of data shows a worst-case drawdown of 18%. Setting a live limit at 20% gives almost no cushion for the strategy to perform slightly worse live than it did historically, which it usually will, given fees and slippage a backtest can underestimate.
A more workable approach sets the live limit meaningfully above the backtested maximum, often by a third to a half again as large, to account for that gap between simulation and reality. A strategy with an 18% historical maximum drawdown might reasonably use a 25% to 27% live limit. That's enough room to survive a normal bad stretch, but not so much room that a genuinely broken strategy keeps trading for months before anyone notices.
The number also has to match what the trader can actually tolerate emotionally, not just what the math allows. A drawdown limit that's mathematically sound but leads to a panicked, rule-breaking exit at 15% because that's the trader's real pain threshold isn't a useful limit. It has to be a number the trader can sit through.
Why Traders Break Their Own Drawdown Rule
Almost every trader who has run a system through a real losing streak has felt the same pull. The drawdown is getting close to the limit. The temptation is to widen the limit rather than stop trading, reasoning that the strategy is "due" for a recovery. I've done this myself with an early system, moving a 20% limit to 25% mid-drawdown because stopping felt premature. The strategy did eventually recover, but moving the goalpost meant the decision to keep trading was made under the exact emotional pressure the limit was supposed to remove.
A limit decided calmly in advance and a limit renegotiated mid-crisis are not the same rule.
This is the core problem with any risk rule that depends on willpower in the moment it matters most. A limit decided calmly in advance and a limit renegotiated mid-crisis are not the same rule, even if the number on paper looks identical. The whole point of setting a drawdown limit ahead of time is that the decision gets made when it's easy, not when it's hard.
Automating a Maximum Drawdown Limit So It Can't Be Argued With
The most reliable fix is to remove the decision from the moment entirely. Most brokers and trading platforms support an automated account-level stop. It's a script or a platform setting that halts all new orders once equity falls below a defined threshold, calculated from the account's peak value rather than a fixed dollar figure.
For a fully coded system, this is usually a simple check that runs before every new order. It calculates current drawdown from the recorded peak, and if it exceeds the limit, skips the order and sends an alert instead of placing it. For a manual or semi-automated system, the same logic can live in a spreadsheet or a simple script. It checks account balance daily and flags when the threshold is crossed, so the decision to stop isn't left to memory or mood.
Automating the check doesn't remove the need for judgment entirely. It just moves the judgment to a calmer moment: deciding the number in advance, instead of deciding whether to honor it while already down 22% and hoping for a bounce.
How Drawdown Limits Connect to Position Sizing
Drawdown limits and position sizing are two sides of the same coin. A strategy that risks too much per trade will hit its drawdown limit faster and more often, even if the entry and exit logic itself is sound, simply because each individual loss eats up more of the available cushion. The mathematical starting point for sizing bets relative to an edge goes back to John Kelly's 1956 paper for the Bell System Technical Journal, which showed that betting a fixed fraction of capital tied to the size of an edge maximizes long-run growth better than betting a fixed dollar amount. Most traders use a fraction well below Kelly's calculated optimum, since the full formula assumes a level of certainty about the edge that real trading strategies rarely have.
Our strategy development coverage goes into how position sizing gets built into a strategy's rules from the start, rather than bolted on afterward.
It's also worth testing how a strategy's drawdown behaves under walk-forward testing rather than a single historical run, since a strategy can show a mild drawdown on one ten-year stretch and a much larger one on a different period the single test didn't happen to cover. And whichever platform or software the strategy runs on, check whether it supports an automated equity stop natively before assuming you'll need to build one from scratch.
FAQ
What's a reasonable maximum drawdown limit for a new strategy?
Many traders start somewhere between 15% and 25% of account equity, though the right number depends on the strategy's historical volatility and how the trader would actually react to a large loss. A backtest's maximum historical drawdown is a starting reference point, not a guarantee that live losses will stay within it.
Should the drawdown limit apply to the whole account or each strategy?
Both, ideally. A per-strategy limit catches a single system malfunctioning or drifting away from its historical behavior. An account-wide limit catches the case where several strategies lose money at the same time, which a per-strategy limit alone won't flag.
What should happen when the drawdown limit is hit?
Trading stops, full stop, until a deliberate, unhurried review happens. That review should ask whether the strategy's logic broke, whether market conditions shifted outside its tested range, or whether this is a normal losing streak within its expected range. Only after that review should trading resume, and only with a plan, not just because the losing streak felt long enough.
Can a maximum drawdown limit be too conservative?
Yes. A limit set too tight can shut down a strategy during a normal, survivable losing streak that its own backtest showed was within range, cutting off a system before it has a chance to recover. This is why the limit should be set from the strategy's own historical drawdown data, not picked as an arbitrary round number.
Bottom Line
A maximum drawdown limit only works if it's set before a losing streak begins and enforced without exception once it's hit. Size it from the strategy's own historical drawdown, with room for live conditions to be worse than the backtest, and automate the stop so the decision isn't left to willpower in the moment it's hardest to trust. The limit that gets renegotiated mid-crisis was never really a limit.