jypi
  • Explore
ChatWays to LearnMind mapAbout

jypi

  • About Us
  • Our Mission
  • Team
  • Careers

Resources

  • Ways to Learn
  • Mind map
  • Blog
  • Help Center
  • Community Guidelines
  • Contributor Guide

Legal

  • Terms of Service
  • Privacy Policy
  • Cookie Policy
  • Content Policy

Connect

  • Twitter
  • Discord
  • Instagram
  • Contact Us
jypi

© 2026 jypi. All rights reserved.

Investment Management
Chapters

1Foundations of Investment Management

2Securities Markets and Trading Mechanics

3Investment Vehicles and Pooled Products

4Data, Tools, and Modeling for Investments

5Risk, Return, and Probability

6Fixed Income: Bonds and Interest Rates

7Equity Securities: Valuation and Analysis

8Derivatives: Options, Futures, and Swaps

9Portfolio Theory and Diversification

10Asset Pricing Models: CAPM and Multifactor

11Portfolio Construction, Rebalancing, and Optimization

12Performance Measurement, Risk Management, and Ethics

Performance attributionSharpe, Information, and SortinoDrawdowns and tail riskStress testing and scenariosVaR and expected shortfallRisk governance and limitsGIPS and performance reportingBehavioral biases in investingESG integration basicsRegulatory and fiduciary duty

13Options

Courses/Investment Management/Performance Measurement, Risk Management, and Ethics

Performance Measurement, Risk Management, and Ethics

533 views

Evaluating results, controlling downside, and upholding professional standards.

Content

3 of 10

Drawdowns and tail risk

Risk with Sass: No-Nonsense Tail-Risk Primer
168 views
intermediate
humorous
finance
risk-management
gpt-5-mini
168 views

Versions:

Risk with Sass: No-Nonsense Tail-Risk Primer

Watch & Learn

AI-discovered learning video

Sign in to watch the learning video for this topic.

Sign inSign up free

Start learning for free

Sign up to save progress, unlock study materials, and track your learning.

  • Bookmark content and pick up later
  • AI-generated study materials
  • Flashcards, timelines, and more
  • Progress tracking and certificates

Free to join · No credit card required

Drawdowns and tail risk: The financial heart attack you plan for (not hope to avoid)

"If you measure only average returns, you're living in a world where storms are polite and don't tip your boat." — Someone who survived 2008

You're already comfortable with Sharpe, Information, and Sortino ratios (we discussed them earlier). Those metrics are excellent at summarizing central tendency and downside sensitivity, but they can lull you into complacency when the real danger lives far in the tail. This piece steps forward: Drawdowns and tail risk — what they are, how to measure them, why they matter for portfolio construction and rebalancing, and practical ways to manage them without turning every allocation into cash.


What is a drawdown? (and why it's not just a boring percentage)

  • Drawdown = the percentage fall from a previous peak to a subsequent trough. Simple. Brutal.

Mathematically, for a value series V_t:

Drawdown_t = (V_t - Peak_t) / Peak_t
where Peak_t = max_{s <= t} V_s
  • Maximum drawdown (MDD) = the largest drawdown over a period. It's the scar on the portfolio's past.
  • Drawdowns capture path dependence — two strategies with identical end returns can have wildly different drawdown experiences, and thus different investor behaviors (panic, redemption, forced liquidation).

Why MDD matters more than a single volatility number: volatility assumes symmetric risk around a mean; drawdown records real investor pain: the time and depth required to recover, and the probability of ruin for levered strategies.


Tail risk: where the monsters live

Tail risk refers to the probability of extreme losses in the far ends of the return distribution (the tails). Unlike daily volatility, tail risk cares about shape: fat tails, skewness, and contagion.

Key ways to measure tail risk:

  • Value-at-Risk (VaR): the return loss threshold not exceeded with probability α. (E.g., 99% VaR = loss level exceeded only 1% of the time.)
  • Conditional VaR (CVaR) or Expected Shortfall (ES): the average loss when losses exceed the VaR. This is superior for tails because it accounts for severity.
  • Stress tests / scenario analysis: forced hypothetical extremes (1987, 2008, COVID-2020) to see structural vulnerabilities.

Formulae:

VaR_{α} = quantile_{α}(loss distribution)
CVaR_{α} = E[loss | loss >= VaR_{α}]

Why VaR alone can be misleading: two portfolios with the same 99% VaR might have vastly different CVaR. VaR tells you a cut-off; CVaR tells you how ugly it gets beyond that cut-off.


How this connects to Sharpe / Sortino and performance attribution

  • Sharpe averages return per unit volatility; it treats all volatility equally. Drawdowns and tail risk show when that volatility is mostly concentrated in rare catastrophes — a high Sharpe could hide catastrophic tail exposure.
  • Sortino partially addresses downside risk by penalizing negative deviation, but still often misses extreme, infrequent events (unless the downside cutoff and sample capture them).
  • Performance attribution helps identify which asset, strategy, or factor drove returns — useful for tracing the source of tail exposures (e.g., implicit short-variance bets in an equity carry trade).

So: use Sharpe/Sortino to screen, but use drawdown, VaR/CVaR, and scenario attribution to validate that the strategy won’t collapse under stress.


Examples that make people stop scrolling and think

  • 2008 Global Financial Crisis: Long-only equity portfolios saw ~50% MDD. Recovery time measured in years. Leverage-containing strategies experienced forced deleveraging and closure.
  • October 1987: huge daily gaps (fat tails). Historical vol models failed because they assumed a normal distribution.
  • March 2020: very fast drawdown and fast rebound — speed matters: liquidity and rebalancing rules get tripped when price moves faster than your risk controls.

Imagine two funds both up 8% annualized for 10 years. One had a steady ride. The other crashed twice by 40% and used huge drawdown recovery to reach the same end. Which would you prefer? Most investors panic-sell after a big drawdown and lock in losses — that's behavioral risk.


Common mistakes in measuring and managing drawdowns/tail risk

  1. Relying only on historical daily vol — tail events are rare and may not be in your sample.
  2. Using VaR without CVaR or stress tests — VaR is a cutoff, not a whole story.
  3. Treating diversification as static — correlations spike during crises (so-called correlation breakdown).
  4. Not considering liquidity or margin dynamics — theoretical capital adequacy ignores fire-sale discounts and forced deleveraging.
  5. Over-hedging based on short-term signals — hedging costs can erode returns; but under-hedging costs ruin.

Practical tools and portfolio-level mitigations (playbook)

  • Limit maximum drawdown per strategy: set hard MDD limits and stop/review triggers.
  • Use Expected Shortfall (CVaR) as a risk objective in optimization (e.g., minimize CVaR subject to return targets), not just variance.
  • Dynamic position sizing: shrink risky positions as realized volatility or tail metrics spike.
  • Stress test and reverse stress test: simulate historical worst-case scenarios and hypothetical sequences to see which positions breakdown.
  • Tail hedges: buy puts, use variance swaps, or allocate to assets with low tail correlation (e.g., long-vol strategies). Accept they cost carry.
  • Liquidity buffers: cash or highly liquid sovereign bonds to meet margin calls and rebalance without selling illiquid assets at fire-sale prices.
  • Rebalancing discipline: disciplined rebalancing reduces path risk — but be careful: rebalancing into a falling market assumes mean reversion and liquidity.

Pseudocode for a simple drawdown and CVaR calculation:

# Given returns r[1..T]
wealth = 1.0
for t in 1..T:
  wealth *= (1 + r[t])
  peaks[t] = max(peaks[t-1], wealth)
  drawdown[t] = (wealth - peaks[t]) / peaks[t]
MDD = min(drawdown)

# CVaR at 95%:
losses = -r
VaR95 = quantile(losses, 0.95)
CVaR95 = mean(losses[losses >= VaR95])

Quick comparison table: metrics and what they tell you

Metric Captures Shortcomings
Sharpe Return per unit vol Hides asymmetry and tails
Sortino Penalizes downside sd May miss extreme tails
MDD Historical deepest loss Path/sample dependent
VaR Cutoff at α Ignores severity beyond cutoff
CVaR Average tail loss Requires tail estimation

Closing — how to think about drawdowns and tail risk as an investor

  • Drawdowns are the investor’s memory — they shape behavior more than annualized returns. Manage them proactively.
  • Tail risk is about rare, expensive mistakes — measure with CVaR, scenario analysis, and stress testing; don't rely solely on normal-theory statistics.
  • Integrate into construction & rebalancing: use CVaR-aware optimization, set drawdown limits, size positions dynamically, and keep liquidity buffers.

Final expert take: "Your model says you're diversified until a storm. Your risk framework should tell you what happens during the storm — not just on sunny days."

Key takeaways (action checklist):

  • Compute and monitor MDD and CVaR alongside Sharpe/Sortino.
  • Run historical and hypothetical stress tests each quarter.
  • Embed drawdown caps into mandates and adapt position sizing dynamically.
  • Maintain tail hedges and liquidity for crisis execution.

If you remember one thing: managing drawdowns and tail risk isn't about eliminating bad days — it's about surviving them without blowing up. Do that and your long-run returns actually matter.

Flashcards
Mind Map
Speed Challenge

Comments (0)

Please sign in to leave a comment.

No comments yet. Be the first to comment!

Ready to practice?

Sign up now to study with flashcards, practice questions, and more — and track your progress on this topic.

Study with flashcards, timelines, and more
Earn certificates for completed courses
Bookmark content for later reference
Track your progress across all topics