Drawdown and Sharpe ratio explained

Two numbers tell you more about a trading strategy than its headline return ever will: drawdown and the Sharpe ratio. Drawdown measures the deepest hole the strategy dug — how far your account fell from its high before recovering — and it is the number that decides whether you survive long enough to see the profits. The Sharpe ratio measures how much return you earned per unit of risk taken, so a smooth 12% beats a wild 12%. This guide defines both precisely, walks through the recovery math that ruins over-leveraged accounts, gives you the formulas, and explains why a gorgeous backtest Sharpe is so often a lie.

Last updated 21 June 2026 · by Mustafa Bilgic

On this page
  1. What drawdown is
  2. Why drawdown decides survival
  3. The brutal recovery math
  4. The Sharpe ratio
  5. What a "good" Sharpe is
  6. Why a high backtest Sharpe lies
  7. Sortino and Calmar
  8. FAQ

What drawdown actually measures

A drawdown is the decline in account equity from a previous peak to a subsequent trough, expressed as a percentage of the peak. At any moment, your current drawdown is how far below your all-time-high equity you sit. Maximum drawdown is the worst such decline over the whole test or trading period — the single deepest valley on your equity curve. If equity climbs to $12,000 and then sags to $9,000 before making a new high, that episode is a 25% drawdown. Max drawdown is the largest one of these you ever endured.

It matters because returns are abstract until you have to live through the path that produced them. A strategy that "made 30% a year" but spent six months down 40% along the way is a completely different experience from one that ground out 30% with a worst dip of 8%. Drawdown captures that lived experience — the part that makes people panic and abandon a perfectly good system at exactly the wrong moment.

Why drawdown decides survival

The first job of any trader or bot is not to make money — it is to not die. A deep enough drawdown ends the game permanently, because below a certain point recovery becomes mathematically implausible and psychologically impossible. There are three ways drawdown kills an account:

This is why experienced practitioners obsess over drawdown more than over return. A strategy you can actually hold through its worst stretch is worth more than a higher-returning one you will abandon. You can study a strategy's depth and recovery directly on the equity curve in the backtester, and pair it with sane risk management and position sizing.

The brutal recovery math

Here is the asymmetry that catches beginners off guard. A loss and the gain needed to undo it are not equal, because the recovery gain is calculated on a smaller base. The formula is simple:

recovery mathrequired_gain = 1 / (1 - drawdown) - 1

10% loss  -> need +11.1% to recover
20% loss  -> need +25.0%
33% loss  -> need +50.0%
50% loss  -> need +100.0%   (must DOUBLE)
75% loss  -> need +300.0%
90% loss  -> need +900.0%

Lose half your account and you do not need another 50% to get back to even — you need to double what is left. Lose 90% and you need a tenfold gain just to break even, which essentially never happens. This is the entire argument for keeping drawdowns shallow: small losses are recoverable, large ones compound into a trap. It is also why uncapped leverage is so dangerous — it magnifies the very drawdowns that the recovery math punishes most severely.

10% 20% 33% 50% 75% +11% +25% +50% +100% +300%
Gain required to recover grows non-linearly as drawdown deepens — the core argument for shallow losses.

The Sharpe ratio: return per unit of risk

The Sharpe ratio, introduced by William F. Sharpe, answers a question raw return cannot: how much extra return did you earn for each unit of volatility you accepted? It rewards smooth, consistent gains and penalises wild swings. Two strategies that both return 12% a year are not equal if one did it calmly and the other lurched between +40% and -25% months. The formula divides excess return by the standard deviation of returns:

sharpe ratioSharpe = (Rp - Rf) / sigma_p

  Rp      = portfolio (strategy) return
  Rf      = risk-free rate (e.g. T-bill yield)
  sigma_p = standard deviation of the strategy's returns

# annualise from periodic returns:
Sharpe_annual = mean(r) / std(r) * sqrt(periods_per_year)
# periods_per_year = 252 for daily, 12 for monthly

The numerator is your reward above a do-nothing risk-free return; the denominator is the volatility — the risk — you stomached to get it. A higher Sharpe means more reward per unit of risk. Crucially, Sharpe says nothing about direction on its own; you annualise it consistently with the data frequency, and you must compare Sharpe numbers only when they were computed the same way.

What counts as a "good" Sharpe

There is no universal threshold, but a working rule of thumb for a real, live, after-cost strategy looks like this:

  1. Below 1.0 — weak. The returns barely compensate for the volatility; often not worth the effort versus simply holding an index.
  2. 1.0 to 2.0 — solid. This is where most genuinely good, sustainable strategies live over long periods.
  3. 2.0 to 3.0 — strong, and rare to sustain after real-world costs.
  4. Above 3.0 — in a short retail backtest, treat this as a red flag for overfitting rather than a trophy. Sustained Sharpes that high usually require infrastructure and edges retail does not have.

Context changes everything: the risk-free rate used, the measurement period, and the return frequency all move the number. The right way to read a Sharpe is alongside the equity curve and the drawdown, never in isolation.

Why a dazzling backtest Sharpe usually lies

The Sharpe ratio is trivially easy to inflate on historical data, which is exactly why a sky-high backtest Sharpe should make you suspicious rather than excited. The common ways a fake-good Sharpe appears:

The antidote is honest testing: hold out data the strategy never saw, then run forward testing and paper trading before risking a cent. A modest Sharpe of 1.3 that survives out-of-sample is worth far more than a 4.0 that only exists in-sample. The numbers only mean something once you understand what a trading strategy is and whether it has a real edge.

Sortino and Calmar: the close cousins

Two related metrics fix specific blind spots in Sharpe. The Sortino ratio replaces total volatility with downside deviation only — it stops punishing a strategy for big upside swings, which most traders would happily accept. The Calmar ratio ties return directly to the pain measure from earlier: it divides annualised return by the maximum drawdown, so it directly rewards strategies that achieve returns without deep holes.

related ratiosSortino = (Rp - Rf) / sigma_downside   # penalises only downside vol
Calmar  = annual_return / abs(max_drawdown)  # return per unit of worst loss

No single number is sufficient. The disciplined way to evaluate a strategy is to read drawdown, Sharpe, Sortino and Calmar together, then sanity-check them against the raw equity curve — and never trust any of them until they have held up out-of-sample. For more on judging a system as a whole, see how to evaluate a trading strategy.

Not financial advice. This content is educational. Automated and algorithmic trading carries a real risk of financial loss. Never trade money you cannot afford to lose. Review the SEC investor.gov and CFTC resources before trading.

Frequently asked questions

What is max drawdown?

Maximum drawdown is the largest peak-to-trough fall in account equity over a period, measured as a percentage. If an account rises to $12,000 then falls to $9,000 before making a new high, the max drawdown is 25%. It is the single best measure of how much pain a strategy inflicts and how close it came to wiping you out.

Why does a 50% drawdown need a 100% gain to recover?

Because percentages compound off a smaller base after a loss. Lose 50% of $10,000 and you have $5,000; to get back to $10,000 you must double that $5,000, which is a 100% gain. The deeper the drawdown, the more lopsided the recovery: a 20% loss needs 25%, a 50% loss needs 100%, and a 90% loss needs 900%.

What is a good Sharpe ratio?

As a rough guide, a Sharpe ratio below 1 is weak, around 1 to 2 is decent, and above 2 is strong for a real, live, after-cost strategy. But context matters: the number depends on the period, the risk-free rate, and how returns are measured. A Sharpe above 3 in a short retail backtest is far more likely to signal overfitting than genius.

Why can a high backtest Sharpe be misleading?

Because Sharpe is easy to inflate by curve-fitting to past data, ignoring fees and slippage, or testing over a short, lucky window. A strategy tuned until its historical Sharpe looks spectacular often collapses on new data. A modest Sharpe that survives out-of-sample and forward testing is worth far more than a dazzling one that only exists in-sample.

MB

Mustafa Bilgic

Algorithmic trading practitioner · Founder, AITradingBot.us

Mustafa builds and backtests automated trading systems and writes about them without the hype. Every tool on this site is free and runs entirely in your browser.