Learn / Backtesting Academy / Max Drawdown
Performance Metrics

Max Drawdown

Quick Answer

Max Drawdown is the largest peak-to-trough percentage decline in a portfolio's value across the backtest window. It captures the worst loss an investor would have lived through if they had bought at exactly the wrong moment and held.

What is Max Drawdown?

Imagine an equity curve. Pick the highest peak the portfolio ever reached. Now find the lowest point that came after that peak before a new high was set. The percentage drop from that peak to that trough is the drawdown of that episode. Max Drawdown is simply the deepest of all such episodes across the entire window. It is reported as a negative percentage, sometimes with a leading minus sign and sometimes with a trailing percent sign in parentheses, depending on the platform.

Max Drawdown is path-dependent in a way that most performance metrics are not. Total Return only cares about the starting and ending values. Annual Return cares only about start, end, and elapsed time. Sharpe and volatility care about the dispersion of period returns. None of them care about the sequence in which good and bad months arrive. Max Drawdown does. A portfolio that rises 20 percent then falls 30 percent and recovers has the same Total Return as one that falls 30 percent first then rises 86 percent, but a much smaller Max Drawdown.

That path sensitivity is exactly why Max Drawdown is so widely watched. Two strategies with identical Total Returns and Sharpe ratios can have very different drawdown profiles, and the one with the smaller Max Drawdown is the one most investors will actually stay invested in. The S&P 500 had a Max Drawdown of roughly 55 percent in 2008 to 2009 and roughly 34 percent in early 2020, recovering both times. Most investors did not, because they did not stay invested through the depth.

Formula

MaxDD = mint [ (Vt − Pt) / Pt ]
Vt is the portfolio value at time t; Pt = max(V0, ..., Vt) is the running peak value through time t; the minimum is taken across all observed points in the window.

The drawdown at any point in time is the percentage gap between the current portfolio value and the highest value the portfolio has reached so far. When the portfolio is at a new all-time high, drawdown is zero. When it falls below that high, drawdown is negative, and gets more negative until either the portfolio recovers to a new high (resetting to zero) or hits a deeper low. Max Drawdown is the most negative value this drawdown series ever takes. It is always less than or equal to zero, and in practice for equity strategies sits between 0 and minus 60 percent for the index, occasionally deeper for concentrated portfolios.

Two conventions matter. First, the formula is computed on portfolio values, not on returns, because returns are relative and only the running level of cumulative value defines a peak. Second, the result depends on the sampling frequency. Daily portfolio values can reveal intra-month troughs that monthly sampling smooths over, so a daily Max Drawdown is usually deeper than the monthly figure for the same strategy. Whichever frequency is used, the benchmark must use the same frequency for the comparison to be fair.

Why Max Drawdown Matters in Backtesting

Max Drawdown is the stomach test. Behavioral research consistently shows that investor return chases strategy return, especially after periods of pain, and the depth of a drawdown is what triggers the chase. A strategy that looks great on a tearsheet but had a 50 percent drawdown will lose investors in real time, no matter how good the recovery turned out to be. Sizing a position in a strategy without knowing its historical Max Drawdown is like agreeing to a road trip without knowing how steep the hills get.

For risk-adjusted performance comparisons, Max Drawdown is the denominator of the Calmar ratio: annual return divided by the absolute value of Max Drawdown. Calmar gives a sense of return per unit of pain rather than per unit of volatility, and is often a more intuitive ratio for long-horizon investors than Sharpe. Two strategies with the same Calmar are roughly equivalent on a pain-adjusted basis, even if their volatilities differ.

Max Drawdown also serves as a sanity check against survivorship bias and other backtest artifacts. A backtest that shows attractive returns and no significant drawdown across a 20-year window should immediately raise suspicion: did the test cross 2008? Did it cross 2020? A real strategy run through real history will almost always show at least one painful drawdown episode. The absence of one is more often evidence of a data problem than evidence of a great strategy.

How SledgeKey Implements Max Drawdown

Max Drawdown appears as one of the headline metric cards on the backtest results page, alongside Total Return, Annual Return, and Sharpe Ratio. It is computed by walking through the simulated portfolio value series, tracking the running peak, computing the percentage drop from that peak at every point, and recording the minimum of that series. The result is reported as a negative percentage.

The benchmark's Max Drawdown is computed the same way on the benchmark's value series over the identical backtest window. A side-by-side reading is the most useful thing to do with these two numbers. A strategy with a smaller Max Drawdown than its benchmark, in the same window, is one that protected capital better through the worst stretch the test covered, even if Total Return was lower. A strategy with a deeper Max Drawdown than the benchmark needs a meaningfully better Total Return to justify the additional pain.

For investors who want more than a single worst-case number, the Drawdown Episodes view (when available) lists the top peak-to-trough declines individually with their start dates, end dates, depths, and recovery durations. That breakdown answers questions Max Drawdown cannot, such as whether the worst loss was a one-off shock or one of several deep episodes, and how long it took the portfolio to climb back to a new high after each one.

Common Pitfalls

The most important pitfall is that Max Drawdown is a single observation. A 20-year backtest produces one Max Drawdown number, drawn from one realized history. That number says very little about how deep the next bad stretch will be. Two strategies with the same Max Drawdown can have completely different distributions of smaller drawdowns. One might have one terrible month and nothing else, while the other might have ten merely-bad months that compound. Max Drawdown alone cannot distinguish them, which is why drawdown episode lists and average drawdown duration are useful complements.

A second pitfall is ignoring recovery time. Max Drawdown captures the depth of the worst loss but says nothing about how long the portfolio sat underwater before climbing back. A 30 percent drawdown that recovered in six months is a different experience from a 30 percent drawdown that took five years to recover. Long underwater periods are particularly hard on investors because they erode confidence even when the depth is moderate. Always ask about recovery duration in tandem with depth.

A third pitfall is window dependence. Max Drawdown across a 5-year window that happens to miss the worst stretch of a strategy's life will look reassuringly small. The same strategy tested across a 25-year window that includes 2000, 2008, and 2020 will look much rougher. Whenever a Max Drawdown number is being compared across strategies, the windows must match. Whenever a strategy's Max Drawdown is being used to size a position, the test window must include at least one true bear market, ideally two, or the number is not load-bearing.

Watch Out

A backtest that crosses 2008 or 2020 and shows a small Max Drawdown almost always has a data or methodology problem. The honest answer for an equity strategy through those windows is a drawdown deep enough to be uncomfortable. If yours isn't, check the data before celebrating.

See Max Drawdown in your own backtest

Run a backtest on any screening strategy and see Max Drawdown computed against the benchmark on point-in-time data, free.

Run a Backtest
Written by The SledgeKey Team · Last updated May 17, 2026