Learn how to measure performance in both rising and falling markets using upside and downside capture ratios. Discover practical calculation methods, see real-world examples, and understand how these metrics aid in portfolio construction and analyzing manager consistency.
One day early in my career, I was analyzing the performance reports of several alternative investment funds. Well, I was feeling pretty confident—until I stumbled on these somewhat mysterious metrics called “capture ratios.” I remember thinking: “Um, do I really need to know how much of the upside we’re capturing?” But over time, I learned that upside and downside capture ratios are some of the most intuitive ways to see how a manager performs in different market phases. They tell a story of how much of an index’s up and down movements your manager is participating in. And that’s pretty awesome if you ask me.
In the context of alternative investments—where performance can sometimes seem quirky, uncorrelated, or downright odd—capture ratios give us a neat lens to spot consistent behavior across bull and bear markets. After all, manager skill isn’t just about making money in good times; it’s also about protecting capital when things go sideways. Let’s dive in.
Capture ratios aren’t complicated in concept:
• Upside Capture Ratio: When the benchmark (like an equity index) is in a positive-return month (or quarter, or year—whatever time frame you’re using), how much of that “up move” did the manager capture?
• Downside Capture Ratio: When the benchmark has negative performance, by what proportion does the manager’s return move in tandem, if at all?
If you find yourself occasionally mixing these up, you’re not alone. The easiest way to recall is that “upside” means good times in the market, and “downside” means periods of negative benchmark returns.
• A ratio above 1 (or 100%, depending on how you express it) indicates the manager is capturing more than the full extent of the benchmark’s movement.
• A ratio below 1 indicates the manager is capturing less.
In hedge fund land—or private capital and real estate for that matter—investment managers often pride themselves on having an “asymmetric return profile,” meaning they try to capture a lot of the upside (high upside capture ratio), while buffering against the downside (low downside capture ratio).
Let’s break it down with a bit of (hopefully not too scary) math. Typically, you divide your total sample period into sub-periods (e.g., months). You then look at the months where the benchmark return is positive for the upside capture ratio. For those months:
(1) You sum the manager’s returns across all positive benchmark months.
(2) You sum the benchmark’s returns across those same months.
Then:
Similarly, for the downside capture:
(1) Identify months where the benchmark return is negative.
(2) Sum manager’s returns in those negative benchmark months.
(3) Sum benchmark’s returns in those same months.
And that’s pretty much it. If you see a manager with an upside capture ratio of 1.2 (or 120%) and a downside capture ratio of 0.8 (80%), you can interpret that as: “When the index goes up, this manager on average racks up 20% more than the index. When the index goes down, they only capture 80% of it.” Which basically suggests they outperform in rising markets and do a bit better than the benchmark in falling markets.
Below is a short snippet that demonstrates how you might compute these ratios in Python using monthly data. (Feel free to skip if code isn’t your thing, but it’s nice to see how straightforward it can be.)
1import pandas as pd
2
3def capture_ratio(returns, benchmark, direction="up"):
4 # direction can be "up" or "down"
5 if direction == "up":
6 mask = benchmark > 0
7 else:
8 mask = benchmark < 0
9 # sum of manager's returns where benchmark is positive or negative
10 manager_returns = returns[mask].sum()
11 # sum of benchmark's returns in those same periods
12 bench_returns = benchmark[mask].sum()
13
14 if bench_returns == 0: # just to avoid dividing by zero
15 return None
16
17 ratio = manager_returns / bench_returns
18 return ratio
19
20mgr = pd.Series([0.02, -0.01, 0.03, 0.04, -0.02])
21bm = pd.Series([0.01, -0.02, 0.025, 0.03, -0.03])
22
23up_ratio = capture_ratio(mgr, bm, "up")
24down_ratio = capture_ratio(mgr, bm, "down")
25
26print("Upside Capture: ", up_ratio)
27print("Downside Capture:", down_ratio)
When the benchmark is up, we see how much the manager captured. When the benchmark is down, we see how much the manager’s return was influenced. That’s it!
Just as you wouldn’t judge a marathon runner based on how they do on a single hill, you don’t want to judge a manager on just one ratio in one time period. Upside and downside capture ratios are typically derived from historical returns that (a) may not repeat in the future, and (b) can vary significantly depending on the length and type of market environment you choose for your analysis.
• High Upside Capture Ratio, Low Downside Capture Ratio: This is the ideal scenario. The manager outruns the market when it’s hot and loses less when it’s not.
• High Upside Capture Ratio & High Downside Capture Ratio: The manager is basically magnifying the index’s performance in both directions. This might be suitable if you’re a more aggressive investor.
• Low Upside Capture Ratio & Low Downside Capture Ratio: The manager is in a sense “dampening” volatility—like a low-vol strategy that moves less than the benchmark all around.
• Low Upside Capture Ratio & High Downside Capture Ratio: Let’s be honest, that’s the least desirable scenario. The manager doesn’t keep pace in bull markets and gets hammered in down markets.
The real magic happens when you look at both the upside and downside capture ratio in tandem. Why? Because many managers might do well in an up market—especially if they’re high beta or employing a lot of leverage. But how they hold up during the tough times is also crucial.
Investors often seek strategies that exhibit asymmetry in returns. In other words:
• Over multiple market regimes, does the manager consistently capture more of the gains but limit the losses?
• Or do their results degrade unpredictably once the market environment shifts?
It’s this notion of “asymmetric returns” that leads many investors to alternative assets in the first place. They’re often after strategies that behave differently, that might zig when the broad market zags.
One of the biggest pitfalls is ignoring the role of the sample window. If you’ve been analyzing performance for the past 12 months in a roaring bull market, you might see a manager’s upside capture ratio at an impressive 150%. But you can’t call them magicians if you haven’t also looked at how they did in negative quarters or years.
Market regimes matter. A manager might do well in a macro environment with rising interest rates but falter in a drastically different environment. So always check whether these capture ratios indicate consistency. In practice, professionals often look at capture ratios across multiple cycle analyses—peak to trough, trough to peak, etc.
Where do capture ratios fit into your bigger decision-making as a portfolio manager or a savvy investor? Well:
• Manager Selection: Upside/downside capture are used side by side with volatility, Sharpe ratios, drawdown analysis, and more. A manager with an attractive risk/return profile typically demonstrates a consistently high upside capture ratio while remaining protective on the downside.
• Asset Allocation: Suppose your portfolio includes a basket of hedge funds, private credit, real estate, or commodity strategies. You might want some managers that shine in bull markets and others that excel in risk-off environments, thus ensuring that your overall portfolio is balanced.
• Performance Benchmarking: If you’re evaluating several funds that claim to track the same “benchmark,” capture ratios can be a quick and easy way to see who’s given you the better “asymmetric” exposure.
Anyway, it’s rarely about one ratio or metric alone. But used in conjunction with standard measures like alpha, beta, standard deviation, and maximum drawdown, it helps to paint a clearer picture of a manager’s personality in up vs. down markets.
Below is a simple Mermaid diagram showing how one might conceptually process data for both upside and downside capture ratios:
flowchart LR A["Collect Historical Returns"] --> B["Separate Periods <br/>Where Benchmark > 0 or < 0"] B --> C["Sum Manager's Returns in <br/>Each Subset"] B --> D["Sum Benchmark's Returns in <br/>Each Subset"] C --> E["Upside Ratio = Manager's Up / Benchmark's Up"] D --> E C --> F["Downside Ratio = Manager's Down / Benchmark's Down"] D --> F
Let’s say we have a small dataset over six months. For simplicity, assume each month’s returns are:
• Benchmark returns: +2%, +1%, -1%, -3%, +4%, +2%
• Manager returns: +3%, +0.5%, -0.8%, -2%, +5%, +3%
Positive benchmark months: (Month 1, 2, 5, 6)
• Benchmark’s total return in those months: 2% + 1% + 4% + 2% = +9%
• Manager’s total return in those months: 3% + 0.5% + 5% + 3% = +11.5%
Upside Capture Ratio = 11.5% / 9% = 1.277… ≈ 127.7%
Negative benchmark months: (Month 3, 4)
• Benchmark’s total return in those months: -1% + (-3%) = -4%
• Manager’s total return in those months: -0.8% + (-2%) = -2.8%
Downside Capture Ratio = -2.8% / -4% = 0.70 or 70%
Interpretation: Our manager has shown quite a strong ability to capture the market’s upside (127.7%!). At the same time, they’ve only participated in 70% of the market’s downside. Some folks might call that a sweet spot.
• Compare apples to apples: Use the same periods, same currency, and same type of returns (gross vs. net) for both manager and benchmark.
• Watch for sample bias: The manager might look great for a certain short window, but not so hot over a complete cycle.
• Keep it consistent: If your benchmark changes or if the manager’s strategy changes, your ratio might not remain apples to apples across the entire period.
• Don’t look at these in a vacuum: Combine them with other risk measures, fundamental analysis, and operational due diligence.
• “Performance Measurement: Key Ratios and Statistics,” Morningstar methodologies.
• CFA Institute publications on manager analytics and factor performance.
• C. Thomas Howard, “Behavioral Portfolio Management.”
These resources dig deeper into the nitty-gritty of performance measurement and the behavioral factors that influence it. They’re also helpful if you’d like a more academic discussion of capture ratios across different market cycles.
• For exam-style item sets, you might see a question that provides monthly benchmark and manager returns. You’ll probably be asked to calculate the upside and downside capture ratios. Make sure you handle negative numbers carefully!
• In essay (constructed-response) questions, you might be required to interpret a manager’s capture ratios in the context of their investment strategy. Aim to comment on how consistent (or inconsistent) the manager’s approach seems to be across multiple market regimes.
• Think about sample windows. The exam may show contrasting results from different time frames, prompting you to discuss the pros and cons of short vs. long sample periods.
• Always tie your analysis back to broader portfolio management goals, such as diversification, risk tolerance, and the pursuit of alpha.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.