Conditional Drawdown at Risk (CDaR) is an advanced risk metric that extends the concept of Drawdown at Risk (DaR) by focusing on the severity of extreme drawdowns. While DaR tells us the maximum drawdown level that won't be exceeded with a certain confidence, CDaR measures the expected magnitude of drawdowns that exceed this threshold.
CDaR provides deeper insight into tail risk by quantifying the average loss in the worst-case scenarios, making it particularly valuable for risk-averse investors and those concerned with protecting against catastrophic market events. It belongs to the family of coherent risk measures, satisfying mathematical properties that ensure consistent risk assessment across different portfolios and market conditions.
This metric is especially relevant for investors with limited risk tolerance, endowments with spending constraints, and pension funds with specific funding requirements, as it helps quantify the expected severity of extreme drawdowns that could threaten financial stability or require significant strategy adjustments.
Imagine you're planning an expedition in a mountainous region. Drawdown at Risk (DaR) would tell you, "With 95% confidence, the maximum elevation drop you should encounter won't exceed 1,000 feet." This is valuable information, but it doesn't tell you what to expect if you do face a drop exceeding 1,000 feet.
Conditional Drawdown at Risk (CDaR) addresses this gap by saying, "If you do encounter drops exceeding 1,000 feet, the average of those extreme drops will be 1,300 feet." This additional information is crucial for proper preparation and risk management in case you face these extreme scenarios.
Real-world analogy: A coastal city's flood management team uses DaR to know that 95% of the time, flooding won't exceed 3 feet. However, for comprehensive disaster planning, they need to know CDaR — the average severity of those rare floods that do exceed 3 feet. If the CDaR is 5 feet, the city needs to design infrastructure and emergency responses to handle these more extreme but still possible scenarios.
To define Conditional Drawdown at Risk, we first need to recall the concepts of drawdown and Drawdown at Risk (DaR).
For a time series of portfolio values , the drawdown at time t is defined as:
where is the maximum portfolio value up to time t.
The Drawdown at Risk (DaR) at confidence level α is defined as:
Building on these foundations, Conditional Drawdown at Risk (CDaR) at confidence level α is formally defined as:
where X represents the portfolio, α is the confidence level, and is the Drawdown at Risk at confidence level u.
Alternatively, CDaR can be expressed as the conditional expectation of the maximum drawdown (MDD) given that it exceeds the DaR threshold:
For empirical calculation with a discrete set of drawdown observations, CDaR can be computed as:
CDaR possesses several important mathematical properties:
Coherence: Unlike DaR, CDaR is a coherent risk measure, satisfying the properties of monotonicity, sub-additivity, homogeneity, and translation invariance.
Sub-additivity: For any two portfolios X and Y, CDaR₍ₓ₊ᵧ₎ ≤ CDaRₓ + CDaRᵧ, which means diversification doesn't increase risk.
Convexity: CDaR is a convex function, making it suitable for convex optimization techniques commonly used in portfolio construction.
Consistency with stochastic dominance: If one portfolio stochastically dominates another in terms of drawdown distribution, CDaR will appropriately rank their risks.
CDaR can be integrated into portfolio optimization frameworks in several powerful ways:
Risk Minimization: Portfolios can be constructed to minimize CDaR for a given expected return, leading to more robustness against extreme drawdowns.
Constraint-Based Approach: CDaR can be used as a constraint in optimization problems, ensuring that the portfolio's tail drawdown risk stays below a specified threshold.
Multi-Objective Optimization: CDaR can be combined with other objectives like expected return or Sharpe ratio in Pareto-efficient portfolio construction.
Our implementation calculates CDaR through the following process:
Historical Data Analysis: We collect historical returns for all assets in the portfolio.
Portfolio Path Simulation: For each scenario (historical or Monte Carlo), we calculate the cumulative portfolio value path and identify all drawdowns.
DaR Calculation: We determine the α-quantile of the maximum drawdown distribution to establish the DaR threshold.
CDaR Calculation: We compute the average of all maximum drawdowns that exceed the DaR threshold.
Optimization: When used for portfolio optimization, we employ convex optimization techniques that efficiently handle CDaR as either an objective function or a constraint.
[Placeholder for drawdown distribution chart showing DaR threshold and CDaR calculation]
Let's calculate the Conditional Drawdown at Risk for a portfolio using a simplified example:
Suppose we have 20 observations of annual maximum drawdowns for a portfolio (in percentage):
8%, 12%, 5%, 15%, 7%, 22%, 10%, 13%, 9%, 18%, 11%, 14%, 6%, 19%, 25%, 16%, 20%, 17%, 34%, 28%
We first sort the drawdowns in ascending order:
5%, 6%, 7%, 8%, 9%, 10%, 11%, 12%, 13%, 14%, 15%, 16%, 17%, 18%, 19%, 20%, 22%, 25%, 28%, 34%
For a 90% confidence level, we identify the 90th percentile, which is the 18th value in our sorted list of 20 observations:
DaR₉₀% = 25%
This means that with 90% confidence, the maximum drawdown should not exceed 25%.
Now, we calculate the average of the drawdowns that exceed the DaR₉₀% threshold of 25%:
Drawdowns exceeding 25%: 28%, 34%
CDaR₉₀% = (28% + 34%) / 2 = 31%
Alternatively, using the formula that incorporates the DaR value:
CDaR₉₀% = 25% + (1/(1-0.9) × 20) × [(28% - 25%) + (34% - 25%)] = 25% + (1/2) × [3% + 9%] = 25% + 6% = 31%
The results tell us:
With 90% confidence, the maximum drawdown won't exceed 25% (this is the DaR).
In the 10% worst cases where the drawdown does exceed 25%, the average drawdown will be 31% (this is the CDaR).
This information is particularly valuable for stress testing and preparing contingency plans for extreme market conditions. An investor might decide that while they can tolerate a 25% drawdown, the prospect of an average 31% drawdown in worst-case scenarios exceeds their risk tolerance, prompting them to adjust their portfolio allocation.
CDaR serves as an effective risk constraint in portfolio optimization. By setting a maximum acceptable CDaR level, portfolio managers can ensure that the expected drawdown severity in worst-case scenarios remains within tolerable limits while maximizing expected returns.
Financial institutions use CDaR to stress test their portfolios against extreme market conditions. By estimating CDaR under various historical and hypothetical scenarios, risk managers gain insight into the potential magnitude of losses during crisis periods.
CDaR provides a valuable metric for evaluating and comparing hedge funds, particularly those claiming to offer downside protection. A lower CDaR indicates better management of tail risk and potentially more robust performance during market downturns.
CDaR enables more sophisticated risk budgeting by focusing on the allocation of risk to different portfolio components based on their contribution to the portfolio's tail drawdown risk, rather than their volatility contribution.
CDaR can inform the pricing and design of derivatives aimed at providing protection against sustained market downturns, such as options on maximum drawdown or insurance products that pay out based on drawdown levels.
Coherent Risk Measure: Unlike DaR, CDaR is a coherent risk measure, satisfying mathematical properties that ensure consistent risk assessment, particularly the sub-additivity property that captures diversification benefits.
Tail Risk Focus: CDaR provides detailed information about the severity of extreme drawdowns, offering deeper insight into tail risk than metrics that only capture the threshold (like DaR) or the average risk (like standard deviation).
Path Dependency: By incorporating the temporal sequence of returns, CDaR captures dynamic risk aspects that point-in-time measures miss, making it more representative of the actual investor experience.
Optimization-Friendly: CDaR's convexity makes it suitable for efficient optimization algorithms, enabling practical implementation in portfolio construction processes.
Data Requirements: Accurate CDaR estimation requires extensive historical data or sophisticated simulation techniques to adequately capture the distribution of extreme drawdowns.
Computational Complexity: Computing CDaR for complex portfolios, especially when used in optimization procedures, can be computationally intensive and may require specialized algorithms.
Estimation Uncertainty: The estimation of CDaR is subject to significant uncertainty due to the limited number of extreme events in historical data, potentially leading to estimation errors.
Interpretation Challenges: CDaR may be less intuitive to non-technical stakeholders compared to simpler metrics like maximum drawdown, potentially requiring additional explanation and education.
CDaR belongs to a family of risk measures that focus on different aspects of drawdown risk:
Drawdown at Risk (DaR): The threshold value that maximum drawdown will not exceed with a specified confidence level, serving as the foundation for CDaR calculation.
Maximum Drawdown (MDD): The largest peak-to-trough decline experienced by a portfolio over a specific time period, representing the worst historical loss from a previous peak.
Average Drawdown (ADD): The mean of all drawdowns over a time period, providing a measure of the typical drawdown magnitude regardless of severity.
Conditional Value at Risk (CVaR): A related concept that measures the expected loss exceeding the Value at Risk threshold, but applied to returns at specific points rather than drawdown paths.
Ulcer Index: A measure that captures both the depth and duration of drawdowns by calculating the square root of the mean of the squared drawdowns.
Chekhlov, A., Uryasev, S., & Zabarankin, M. (2005). "Drawdown Measure in Portfolio Optimization." International Journal of Theoretical and Applied Finance, 8(01), 13-58.
Goldberg, L. R., & Mahmoud, O. (2017). "Drawdown: From Practice to Theory and Back Again." Mathematics and Financial Economics, 11(3), 275-297.
Alexander, G. J., & Baptista, A. M. (2006). "Portfolio Selection with Drawdown Constraints." Journal of Banking & Finance, 30(11), 3171-3189.
Zabarankin, M., Pavlikov, K., & Uryasev, S. (2014). "Capital Asset Pricing Model (CAPM) with Drawdown Measure." European Journal of Operational Research, 234(2), 508-517.
Rockafellar, R. T., & Uryasev, S. (2002). "Conditional Value-at-Risk for General Loss Distributions." Journal of Banking & Finance, 26(7), 1443-1471.
Lohre, H., Nessler, T., & Ottink, J. (2014). "Drawdown Diversification: A Risk Management Approach to Improved Risk-Adjusted Returns." Journal of Portfolio Management, 40(3), 78-90.