Maximum Drawdown Explained for Traders
Clear, practical guide to maximum drawdown, how it differs from return, formulas, a worked example, and steps to recover after losses.
What is maximum drawdown and why it matters
Maximum drawdown (MDD) is the largest peak-to-trough decline in your equity over a specified period. It measures downside risk: how far your account dropped from its highest value before recovering. For traders, MDD is vital because a large drawdown changes the psychology of trading, increases the required return to get back to the peak, and highlights whether a strategy's risk profile matches your risk tolerance.
The formula
Maximum drawdown for a single peak–trough pair is:
MDD = (Peak Value - Trough Value) / Peak Value
Expressed as a percentage, MDD tells you the proportion of capital lost from the peak.
If you want the worst (maximum) drawdown over an equity curve, compute the drawdown at every time step and take the maximum.
Step-by-step algorithm to compute MDD from an equity series E_t:
- Initialize running_peak = E_0, drawdowns = []
- For each t:
- MDD = max(drawdowns)
- running_peak = max(running_peak, E_t) - drawdown_t = (running_peak - E_t) / running_peak - append drawdown_t to drawdowns
Drawdown vs return — different risk perspectives
Return measures how much money you made over a period (absolute or annualized). Drawdown measures how much you lost along the way. Two strategies with identical returns can have very different drawdowns — one smooth and low-risk, the other volatile with deep dips. For example, Strategy A returns 20% with a 10% MDD, Strategy B also returns 20% but with a 50% MDD. Which is preferable depends on your risk tolerance and ability to stick with the plan through losses.
Key implications:
- A larger MDD requires a larger percentage gain to recover (see next section).
- Return alone does not reveal path risk; incorporate MDD when evaluating a strategy.
Worked example: computing MDD and required recovery
Hypothetical equity curve (daily snapshots):
- Day 0: $100,000 (initial peak)
- Day 30: $110,000 (new peak)
- Day 60: $88,000 (trough after drawdown)
- Day 90: $95,000
- Day 120: $120,000 (new peak)
Compute drawdowns at each step:
- From Day 0 to Day 30, running_peak = $110,000, drawdown = 0
- At Day 60, running_peak = $110,000, drawdown = (110,000 - 88,000) / 110,000 = 22,000 / 110,000 = 0.20 = 20%
- At Day 90, drawdown = (110,000 - 95,000) / 110,000 = 13,000 / 110,000 = 11.82%
- At Day 120, running_peak = 120,000, drawdown = 0
Maximum drawdown over this period is 20% (Day 60).
Required return to recover from a drawdown
If your equity falls from Peak P to Trough T, the percent decline is D = (P - T) / P. The percent return R required to get back to P from T is:
R = (P / T) - 1 = 1 / (1 - D) - 1
Using the example: P = $110,000, T = $88,000 so D = 20%.
R = (110,000 / 88,000) - 1 = 1.25 - 1 = 25%
So a 20% drawdown requires a 25% gain from the trough to reach the prior peak. Notice the non-linear relationship: deeper drawdowns require disproportionately larger recoveries.
Practical steps: how to recover from a drawdown (process, not promises)
- Pause and assess: stop increasing position sizes until you understand why performance deteriorated.
- Measure loss causes: separate market-driven losses from strategy or execution errors. Was volatility higher? Did a correlation break? Did stops fail?
- Recalculate position sizing: adopt a rule-based sizing method (fixed fraction or volatility-adjusted). Example simple rule:
- Re-validate the edge: backtest or paper-trade a revised plan over a sample period that includes recent market regimes.
- Set staged recovery targets: aim for consistent, positive expectancy trades rather than forcing huge bets to “catch up.” Use the required-return formula to set realistic timelines.
- Monitor drawdown limits: predefine a maximum tolerable drawdown (e.g., 15–25%) and reduce size or halt the strategy if exceeded.
- Risk per trade = 1% of current equity - Position size = (risk per trade in $) / (stop distance in $)
Example position-sizing calculation (concrete numbers):
- Equity after drawdown: $88,000
- Risk per trade: 1% = $880
- Stop distance for a trade: $4 per share
- Position size (shares) = 880 / 4 = 220 shares
This keeps losses predictable and prevents “doubling down” that blows up accounts.
Managing expectations and strategy selection
- Expect some drawdowns; no strategy has zero. Evaluate strategies by both average return and worst-case drawdown over relevant market regimes.
- Consider maximum drawdown in relation to your psychology — can you stick with the plan when you are down 20–30%?
- Use diversification and volatility targeting to smooth equity curves and reduce MDD without necessarily sacrificing all return.
Quick checklist to implement today
- Compute MDD on your recent equity curve using the algorithm above.
- Convert the worst drawdown to the required recovery return using R = 1/(1 - D) - 1.
- If required R is large (e.g., >30%), revisit position sizing and edge assumptions.
- Set a hard stop (max drawdown threshold) and a plan to switch to a smaller-size test mode when it’s hit.
Practice these calculations and rules in a risk-free environment — try AIYUG's free paper-trading race at https://aiyug.trading/signup to see how different sizing and exit rules affect drawdowns and recovery in live market conditions (virtual money only).
No guarantees are made; this is educational material only. Keep records, review performance regularly, and adjust rules based on measured outcomes.
FAQ
How is maximum drawdown different from a periodic loss?
Maximum drawdown is the largest cumulative peak-to-trough decline over a specified period. A periodic loss could be a single day or month loss; MDD captures the worst decline across the whole equity curve, accounting for sequence and recovery times.
If I have a 40% drawdown, what percent gain do I need to recover?
Use R = 1/(1 - D) - 1. For a 40% drawdown (D = 0.40), R = 1/(0.60) - 1 = 0.6667 = 66.67%. So you need roughly a 66.7% gain from the trough to recover to the previous peak.
Can drawdown be eliminated entirely?
No; all active strategies experience drawdown. You can reduce drawdown via diversification, volatility targeting, and conservative position sizing, but eliminating it would typically reduce expected returns and may hide underlying risks.
FOMO in Trading and How to Overcome It
Understand why FOMO in trading happens, practical steps to stop chasing the market mistake, and a worked example with position-sizing formulas you can use today.
How to Avoid Revenge Trading: Practical Steps
Concrete, actionable techniques to stop revenge trading, reduce emotional trading losses, and rebuild disciplined risk management with worked examples.
Mastering Trading Psychology and Emotional Discipline
Practical, technique-focused methods to control fear and greed, build trading-discipline habits, and apply position-sizing and expectancy formulas with a worked example.