Skip to content

Drawdown Management

Overview

Drawdown is the peak-to-trough decline in portfolio value. Managing drawdowns is critical — the deeper the drawdown, the harder the recovery. A 50% drawdown requires a 100% gain to break even.

Difficulty intermediate

Equity curve and drawdowns

peak DD₁ trough peak DD₂ (max DD) time → equity
each shaded triangle is a drawdown — depth = peak−trough, duration = base width

Drawdown Mathematics

Recovery Requirements

Recovery % = Drawdown / (1 - Drawdown)

| Drawdown | Recovery Needed |
|----------|----------------|
| 10%      | 11.1%          |
| 20%      | 25.0%          |
| 30%      | 42.9%          |
| 40%      | 66.7%          |
| 50%      | 100.0%         |
| 60%      | 150.0%         |
| 70%      | 233.3%         |
| 80%      | 400.0%         |
| 90%      | 900.0%         |

where: Drawdown peak-to-trough percentage loss expressed as a decimal · Recovery % percentage gain on the trough equity required to return to the prior peak does: quantifies the arithmetic asymmetry of losses — used to justify hard drawdown limits and to argue why capital preservation dominates return optimization beyond ~20% loss.

Expected Drawdown

Expected Maximum Drawdown ≈ σ × √(2 × T × ln(T))

Where:
σ = Annualized volatility
T = Time horizon (in years)

For daily data with n days:
Expected DD ≈ σ_daily × √(2 × n × ln(n))

where: σ annualized return volatility · T look-ahead horizon in years · n number of daily observations does: the closed-form Magdon-Ismail estimate of expected maximum drawdown for a Brownian return process — used to set realistic drawdown budgets, justify internal stop-trading thresholds, and challenge backtests whose realized max DD looks suspiciously low for the stated volatility.

Recovery Strategies

1. Gradual Re-Entry

After hitting drawdown limit, gradually increase position size:

size_t = base_size × min(1, equity_t / high_water_mark)^k

where: size_t next trade size · base_size pre-drawdown size · equity_t current equity · high_water_mark prior peak equity · k ≥ 1 recovery aggressiveness exponent (higher = slower scale-in) does: rescales position size as a fraction of the equity recovered toward the prior peak — used after a drawdown halt so risk grows only as proof of edge returns; choose k = 2 for conservative scale-in, k = 1 for linear.

Psychological Aspects

Drawdown Response Framework

Drawdown Level Action Psychological State
0-5% Normal trading Confident
5-10% Review positions, reduce size slightly Uneasy
10-15% Reduce size 25%, review strategy Concerned
15-20% Reduce size 50%, pause new trades Stressed
20%+ Stop trading, full review Panic risk

Checklist

  • [ ] Max drawdown limit defined before trading
  • [ ] Daily/weekly/monthly loss limits set
  • [ ] Circuit breaker rules established
  • [ ] Position sizing adjusts with drawdown
  • [ ] Recovery plan defined
  • [ ] Drawdown duration monitored
  • [ ] Calmar ratio tracked
  • [ ] Psychological state assessed during drawdown
  • [ ] Strategy review triggered at threshold
  • [ ] Paper trading before resuming after halt

References

  1. Magdon-Ismail, M. et al. (2004). "On the Maximum Drawdown of a Brownian Motion." Journal of Applied Probability, 41(1), 147-161.
  2. Chekhlov, A. et al. (2005). "Drawdown Measure in Portfolio Optimization." International Journal of Theoretical and Applied Finance, 8(1), 13-58.
  3. Grossman, S.J. & Zhou, Z. (1993). "Optimal Investment Strategies for Controlling Drawdowns." Mathematical Finance, 3(3), 241-276.