What Is the Calmar Ratio?
The Calmar ratio is a risk-adjusted performance metric that measures an investment's annualised return divided by its maximum drawdown. It tells you how much return a strategy has generated for each unit of its worst peak-to-trough loss. A higher Calmar ratio means better compensation for the worst pain the strategy has inflicted on investors.
The name comes from the California Managed Accounts Reports newsletter, founded by Terry W. Young in 1991. Young created the ratio specifically to evaluate commodity trading advisors (CTAs) and managed futures funds, where maximum drawdown is the risk measure investors care about most. Unlike standard deviation, which treats all volatility the same, maximum drawdown captures the single worst cumulative loss an investor would have experienced - the scenario that causes real-world capitulation.
The Calmar ratio has since become a standard performance metric well beyond managed futures. In 2026, it's widely used in hedge fund due diligence, quantitative strategy evaluation, and portfolio construction. Allocators who care about capital preservation and drawdown control - pension funds, endowments, family offices - frequently rank managers by Calmar ratio alongside the Sharpe and Sortino ratios.
The standard convention uses a 36-month (three-year) rolling window for both the return and drawdown calculation, though practitioners sometimes adjust this depending on the context.
The Calmar Ratio Formula
The Calmar ratio equals the annualised compound return divided by the absolute value of the maximum drawdown over the same period.
Calmar Ratio = Annualised Return / |Maximum Drawdown|
Where:
- Annualised Return = the compound annual growth rate (CAGR) of the portfolio over the measurement period
- Maximum Drawdown = the largest peak-to-trough decline in portfolio value during the same period, expressed as a positive percentage
Let's break each component down.
Annualised Return
The numerator is the portfolio's compound annual growth rate. If you have monthly or daily returns, you compound them over the full period and then annualise. For a series of monthly returns r1, r2, ..., rN spanning T years:
CAGR = (Product of (1 + ri) for all i)^(1/T) - 1
Using CAGR rather than simple average return ensures the numerator reflects actual wealth accumulation. A strategy with volatile returns and a high average return might still compound poorly. The Calmar ratio captures this because the numerator uses geometric rather than arithmetic returns.
Maximum Drawdown
The denominator is the maximum drawdown - the largest percentage decline from any peak to any subsequent trough during the measurement period. It represents the worst loss an investor would have suffered if they bought at the worst possible time and held through the worst possible point.
To compute maximum drawdown from a return series:
- Build the cumulative wealth index (equity curve) from the returns.
- At each point in time, record the running maximum of the equity curve.
- Compute the drawdown at each point as the percentage decline from that running maximum.
- The maximum drawdown is the largest of these percentage declines.
Maximum drawdown is always expressed as a positive number in the Calmar ratio formula. A 25% peak-to-trough decline means the maximum drawdown is 0.25 (or 25%).
Worked Example
Suppose you're evaluating a managed futures fund with the following track record over three years.
| Year | Annual Return |
|---|---|
| 2023 | +18.5% |
| 2024 | +9.2% |
| 2025 | +14.1% |
During this period, the fund's worst peak-to-trough decline was -12.3%.
Step 1: Calculate the annualised return.
CAGR = ((1.185) x (1.092) x (1.141))^(1/3) - 1
First, compute the cumulative growth factor:
1.185 x 1.092 x 1.141 = 1.4764
Then annualise:
CAGR = 1.4764^(1/3) - 1 = 1.1386 - 1 = 0.1386 = 13.86%
Step 2: Identify the maximum drawdown.
The worst peak-to-trough loss was 12.3%, so |Maximum Drawdown| = 0.123.
Step 3: Compute the Calmar ratio.
Calmar Ratio = 0.1386 / 0.123 = 1.13
This fund earned 1.13 units of annualised return for each unit of maximum drawdown. As we'll see in the interpretation section, a Calmar ratio above 1.0 is generally considered acceptable - the fund is generating more return than its worst loss.
For context, let's compare with a second fund that returned 22% annualised but suffered a 30% drawdown:
Calmar Ratio = 0.22 / 0.30 = 0.73
Despite the higher absolute return, the second fund's Calmar ratio is lower because its drawdown was proportionally larger. This is the core insight the Calmar ratio provides - it penalises strategies that achieve returns through excessive drawdown risk.
Calculating the Calmar Ratio in Python
Here's a practical Python implementation for computing the Calmar ratio from a series of returns. This uses NumPy and pandas, the standard toolkit for quantitative analysis.
import numpy as np import pandas as pd def maximum_drawdown(returns: pd.Series) -> float: """ Calculate the maximum drawdown from a return series. Parameters ---------- returns : pd.Series Period returns (e.g. daily or monthly). Returns ------- float Maximum drawdown as a positive decimal (e.g. 0.25 for 25%). """ cumulative = (1 + returns).cumprod() running_max = cumulative.cummax() drawdowns = (cumulative - running_max) / running_max return abs(drawdowns.min()) def calmar_ratio( returns: pd.Series, periods_per_year: int = 252, ) -> float: """ Calculate the Calmar ratio for a return series. Parameters ---------- returns : pd.Series Period returns (e.g. daily or monthly). periods_per_year : int Trading days (252), months (12), or weeks (52). Returns ------- float The Calmar ratio (annualised return / maximum drawdown). """ total_periods = len(returns) years = total_periods / periods_per_year # Compound annual growth rate cumulative_return = (1 + returns).prod() cagr = cumulative_return ** (1 / years) - 1 max_dd = maximum_drawdown(returns) if max_dd == 0: return float("inf") if cagr > 0 else 0.0 return cagr / max_dd # --- Example usage --- np.random.seed(42) dates = pd.bdate_range("2023-01-02", periods=756) # ~3 years of daily data # Simulated daily returns for a CTA-style strategy daily_returns = pd.Series( np.random.normal(0.0004, 0.008, len(dates)), index=dates, ) # Inject a drawdown period to make the example realistic daily_returns.iloc[200:230] -= 0.005 calmar = calmar_ratio(daily_returns, periods_per_year=252) max_dd = maximum_drawdown(daily_returns) cagr = ((1 + daily_returns).prod()) ** (252 / len(daily_returns)) - 1 print(f"CAGR: {cagr:.2%}") print(f"Maximum Drawdown: {max_dd:.2%}") print(f"Calmar Ratio: {calmar:.2f}")
A few things to note about this implementation:
- The
maximum_drawdownfunction builds the full equity curve from the return series, tracks the running peak, and finds the deepest trough relative to that peak. This is more accurate than working with periodic returns directly. - CAGR is computed geometrically, compounding all period returns and then annualising. This matches the standard Calmar ratio convention.
- The simulated drawdown (subtracting 0.005 from daily returns over 30 days) creates a realistic scenario where the strategy experiences a sustained losing period, which is typical for trend-following funds during range-bound markets.
- Set
periods_per_yearcorrectly for your data frequency. Use 252 for daily, 52 for weekly, or 12 for monthly data.
For production use, you'd want to validate inputs, handle edge cases like very short series, and potentially implement the rolling 36-month version that matches the original Calmar convention.
How to Interpret the Calmar Ratio
A Calmar ratio above 3.0 is considered excellent, between 1.0 and 3.0 is acceptable, and below 1.0 suggests the strategy's returns don't adequately compensate for its worst drawdown. These thresholds are guidelines rather than hard rules - context matters significantly.
| Calmar Ratio | Interpretation |
|---|---|
| Below 0.5 | Poor - the maximum drawdown far exceeds the annualised return |
| 0.5 to 1.0 | Weak - the strategy barely earns back its worst loss per year |
| 1.0 to 2.0 | Acceptable - reasonable compensation for drawdown risk |
| 2.0 to 3.0 | Good - strong returns relative to the worst drawdown experienced |
| 3.0 to 5.0 | Excellent - high return with well-controlled drawdowns |
| Above 5.0 | Exceptional - difficult to sustain; verify the track record carefully |
Context: Hedge Fund and CTA Evaluation
The Calmar ratio is particularly valuable for evaluating CTAs and managed futures funds. These strategies are often assessed primarily on drawdown characteristics because investors in the managed futures space tend to have low tolerance for large peak-to-trough losses. A CTA with a Calmar ratio above 2.0 over a rolling three-year window is considered strong by industry standards.
Hedge fund allocators use the Calmar ratio to complement the Sharpe ratio. A fund might have a decent Sharpe ratio (say 1.2) but a poor Calmar ratio (say 0.6) if it experienced one severe drawdown followed by otherwise smooth returns. The Sharpe ratio, which uses standard deviation, wouldn't fully capture that single catastrophic event. The Calmar ratio highlights it directly.
Beware of Short Track Records
The Calmar ratio is especially unreliable over short measurement periods. A strategy that hasn't yet experienced a significant drawdown will show an artificially high Calmar ratio. This is a feature of the metric's construction: maximum drawdown can only increase or stay the same as the observation window lengthens. A fund with 18 months of positive returns and a small 3% drawdown will have an impressive Calmar ratio that says more about the benign market environment than the manager's skill.
Use at least three years of data - the standard convention - before treating the Calmar ratio as meaningful. Even then, understanding statistical foundations helps you recognise when the sample is too small to draw reliable conclusions.
Calmar Ratio vs Sharpe Ratio vs Sortino Ratio
The Calmar, Sharpe, and Sortino ratios all measure risk-adjusted returns, but they each define "risk" differently. The choice between them depends on what type of risk matters most for your investment context.
| Feature | Calmar Ratio | Sharpe Ratio | Sortino Ratio |
|---|---|---|---|
| Numerator | Annualised return (CAGR) | Return above risk-free rate | Return above target |
| Denominator | Maximum drawdown | Standard deviation | Downside deviation |
| Risk definition | Worst cumulative loss | Total volatility (up and down) | Downside volatility only |
| Penalises upside volatility? | No | Yes | No |
| Captures tail risk? | Partially - via the single worst event | Poorly | Partially |
| Standard window | 36 months | Flexible | Flexible |
| Best for | CTAs, managed futures, drawdown-sensitive investors | General-purpose comparison | Asymmetric return distributions |
| Typical "good" value | Above 1.0 | Above 1.0 | Above 1.0 |
When to Prefer the Calmar Ratio
Choose the Calmar ratio when maximum drawdown is the risk dimension that matters most. For investors who would redeem after a 20% drawdown regardless of other metrics, the Calmar ratio directly addresses their concern. Managed futures allocators and pension fund risk committees tend to think in drawdown terms rather than standard deviation terms.
When to Prefer the Sharpe Ratio
The Sharpe ratio is appropriate when volatility itself is the concern - for example, in a portfolio where you're sizing positions based on expected volatility. It's also the most universally understood metric and the easiest to compare across different sources and contexts.
When to Prefer the Sortino Ratio
The Sortino ratio fits best when downside volatility is the concern but you don't want to reduce risk to a single worst-case event. It captures the general tendency to produce below-target returns, making it suitable for strategies with asymmetric payoffs like options-based approaches. The information ratio is the better choice when evaluating performance relative to a specific benchmark.
In practice, use all three. They answer different questions, and looking at them together gives a more complete picture than any single metric.
When to Use the Calmar Ratio
The Calmar ratio is most useful when maximum drawdown is the binding constraint on the investment - when the question isn't "how volatile is this?" but "what's the worst it's done?"
CTA and Managed Futures Evaluation
This is the Calmar ratio's home territory. The managed futures industry adopted it precisely because investors in this space set drawdown limits. A fund-of-funds allocator might have a hard rule: redeem from any manager whose drawdown exceeds 15%. For these allocators, the Calmar ratio directly answers whether the returns justify the drawdown exposure.
Strategies Where Drawdown Is the Primary Risk
Beyond managed futures, the Calmar ratio is valuable for any strategy where drawdown drives investor behaviour more than volatility does. Systematic macro strategies, long/short equity funds, and concentrated value portfolios all produce return profiles where the worst drawdown is more meaningful than period-to-period standard deviation.
Manager Comparison Within a Peer Group
The Calmar ratio is particularly useful for ranking managers within a similar strategy category. Comparing the Calmar ratio of five trend-following funds is more informative than comparing a trend follower to a statistical arbitrage fund, because the expected drawdown profiles of those strategy types are fundamentally different.
Portfolio-Level Risk Budgeting
When constructing a multi-manager portfolio, allocators often set a portfolio-level maximum drawdown budget. Manager-level Calmar ratios feed directly into this analysis - they help estimate how much drawdown each allocation is likely to contribute. A solid understanding of risk management principles is essential for this kind of portfolio construction.
Limitations of the Calmar Ratio
The Calmar ratio has several weaknesses that practitioners should understand before relying on it exclusively.
Sensitive to Measurement Period
The maximum drawdown figure depends heavily on the observation window. Extend the window by six months and a new worst drawdown might appear, sharply changing the ratio. Shorten the window and you might miss a significant drawdown entirely. The standard three-year convention helps, but it's still arbitrary - a manager who had a terrible drawdown 37 months ago will see their Calmar ratio improve dramatically once that event drops out of the rolling window.
Maximum Drawdown Is a Single Data Point
The entire denominator rests on one event - the worst peak-to-trough loss. This makes the Calmar ratio inherently unstable. A strategy with nine modest drawdowns of 5-8% and one drawdown of 15% will have the same Calmar denominator as a strategy that experienced a single 15% drawdown and no others. The two strategies have very different risk profiles, but the Calmar ratio can't distinguish between them.
Doesn't Capture Recovery Time
A 20% drawdown that recovers in three months is very different from a 20% drawdown that takes two years to recover. The Calmar ratio treats them identically because it only considers the depth of the drawdown, not how long the strategy spent underwater. Some practitioners supplement the Calmar ratio with the Ulcer Index or the pain ratio, both of which account for the duration and frequency of drawdowns.
Upward Bias in Rising Markets
In a sustained bull market, many strategies will show small maximum drawdowns simply because the market environment hasn't tested them. The Calmar ratio will be high for almost everyone, making it hard to differentiate between genuinely skilled managers and those benefiting from favourable conditions. The ratio is most informative when the measurement period includes at least one significant market stress event.
Not Suitable for Cross-Strategy Comparison
Comparing Calmar ratios across different strategy types can be misleading. A market-neutral equity strategy and a leveraged macro fund have fundamentally different drawdown profiles. A Calmar ratio of 2.0 means something very different for each. Compare Calmar ratios within peer groups, not across them.
Despite these drawbacks, the Calmar ratio fills a genuine gap in the risk-adjusted performance toolkit. It answers a question that standard deviation-based metrics don't: is the return worth the worst loss? For investors whose primary concern is drawdown, it remains the most direct metric available.
Frequently Asked Questions
What is a good Calmar ratio?
A Calmar ratio above 3.0 is generally considered excellent, meaning the strategy's annualised return is at least three times its maximum drawdown. Ratios between 1.0 and 3.0 are acceptable - the strategy earns back its worst drawdown within one to three years. Below 1.0 means it would take more than a year of average returns just to recover from the worst loss. These benchmarks apply primarily to hedge funds and CTAs evaluated over three-year rolling windows. The context matters: a long-only equity fund will naturally have a lower Calmar ratio than a market-neutral strategy because equity drawdowns in broad sell-offs can be severe regardless of manager skill.
How do you calculate the Calmar ratio?
The Calmar ratio calculation is straightforward: divide the annualised compound return (CAGR) by the absolute value of the maximum drawdown. First, compute the CAGR by compounding all periodic returns and annualising. Then find the maximum drawdown by building the cumulative equity curve, tracking the running peak, and identifying the largest percentage decline from peak to subsequent trough. The ratio is CAGR divided by that maximum drawdown figure. The standard measurement period is 36 months (three years). If the annualised return is 15% and the maximum drawdown is 10%, the Calmar ratio is 1.5.
What is the difference between the Calmar ratio and the Sharpe ratio?
The fundamental difference is what each ratio considers risk. The Sharpe ratio uses standard deviation of returns as its risk measure - it treats all volatility, upside and downside, as equally undesirable. The Calmar ratio uses maximum drawdown, focusing entirely on the single worst peak-to-trough loss. This means the Calmar ratio is more relevant when investors care specifically about large cumulative losses rather than general return variability. A strategy can have a strong Sharpe ratio but a weak Calmar ratio if it experienced one deep drawdown in an otherwise smooth return stream. The Sharpe ratio averages that event into overall volatility; the Calmar ratio puts it front and centre.
Can the Calmar ratio be negative?
Yes. The Calmar ratio is negative when the annualised return is negative, meaning the strategy lost money over the measurement period. Since maximum drawdown is always positive (or zero), a negative numerator produces a negative ratio. A negative Calmar ratio is a clear warning sign - the strategy not only suffered a significant drawdown but also failed to generate positive returns over the full period. In practice, most fund databases filter out managers with negative Calmar ratios during screening.
How does the Calmar ratio relate to the Sortino ratio?
Both ratios improve on the Sharpe ratio by focusing on a more specific aspect of risk, but they address different concerns. The Sortino ratio measures return per unit of downside deviation - the general tendency to produce below-target returns. The Calmar ratio measures return per unit of maximum drawdown - the single worst cumulative loss. The Sortino ratio is better for understanding the typical downside experience, while the Calmar ratio highlights the extreme case. A strategy with frequent small losses but no large drawdown will have a modest Sortino ratio but a strong Calmar ratio. A strategy with rare but severe drawdowns will show the opposite pattern. Using both together gives a more complete view of downside risk than either metric alone.
Want to go deeper on Calmar Ratio: What It Is & How to Calculate It 2026?
This article covers the essentials, but there's a lot more to learn. Inside Quantt, you'll find hands-on coding exercises, interactive quizzes, and structured lessons that take you from fundamentals to production-ready skills — across 50+ courses in technology, finance, and mathematics.
Free to get started · No credit card required