What Is the Information Ratio?
The information ratio (IR) measures how much excess return a portfolio generates relative to a benchmark, per unit of tracking risk taken. It's the standard metric fund allocators and portfolio managers use to assess whether active management skill is genuine or just noise. A higher IR means more consistent outperformance.
If you manage money against a benchmark - say the FTSE 100 or the S&P 500 - your investors don't just care whether you beat the index. They care whether you beat it reliably. A manager who outperforms by 5% one year and underperforms by 4% the next looks very different from one who quietly beats the benchmark by 0.5% every single year. The information ratio captures exactly this distinction.
The concept sits at the intersection of portfolio theory and risk management. It was popularised by Grinold and Kahn in their foundational work on active portfolio management, and it remains one of the most widely quoted performance metrics in the asset management industry in 2026.
Think of it this way: the information ratio answers the question "how much am I being rewarded for every unit of active risk I'm taking?" A fund that takes huge bets to achieve modest outperformance scores poorly. A fund that consistently adds small amounts of alpha with minimal deviation from the benchmark scores well.
The Information Ratio Formula
The information ratio equals the portfolio's average excess return over a benchmark, divided by the standard deviation of that excess return (known as tracking error).
IR = (Rp - Rb) / Tracking Error
Where:
- Rp = the portfolio's return over the measurement period
- Rb = the benchmark's return over the same period
- Rp - Rb = the active return (also called excess return or alpha)
- Tracking Error = the standard deviation of the active return series
Let's break each component down.
Active Return
Active return is simply how much the portfolio returned above or below the benchmark. If your portfolio returned 12% and the benchmark returned 9%, your active return is 3%. This is the numerator of the information ratio formula.
When measured over multiple periods, you compute active return for each period individually. So if you have 12 months of data, you get 12 individual active return figures.
Tracking Error
Tracking error is the standard deviation of the active return series. It measures the consistency of outperformance. Two portfolios might both have an average active return of 2%, but if one achieves this steadily and the other swings wildly between +10% and -8%, they have very different tracking errors.
Tracking error is sometimes called "active risk" - it's the risk a manager takes by deviating from the benchmark. A pure index tracker has a tracking error near zero. A concentrated stock-picker might have a tracking error of 8-12%.
Formally:
Tracking Error = StdDev(Rp,t - Rb,t)
where the standard deviation is taken across all time periods t in the measurement window.
This connects directly to the statistical concepts of variance and standard deviation. If you're comfortable with those, tracking error is straightforward.
How to Calculate the Information Ratio
Here's a step-by-step worked example to make the information ratio calculation concrete.
Setup: Suppose you have monthly return data for a portfolio and its benchmark over 6 months.
| Month | Portfolio Return | Benchmark Return | Active Return |
|---|---|---|---|
| Jan | 2.1% | 1.5% | 0.6% |
| Feb | -0.8% | -1.2% | 0.4% |
| Mar | 3.4% | 2.9% | 0.5% |
| Apr | 1.0% | 1.3% | -0.3% |
| May | 2.5% | 1.8% | 0.7% |
| Jun | -0.5% | -0.9% | 0.4% |
Step 1: Calculate the mean active return.
Mean Active Return = (0.6 + 0.4 + 0.5 + (-0.3) + 0.7 + 0.4) / 6 = 2.3 / 6 = 0.383%
Step 2: Calculate the tracking error (standard deviation of active returns).
First, find each deviation from the mean:
- Jan: 0.6 - 0.383 = 0.217
- Feb: 0.4 - 0.383 = 0.017
- Mar: 0.5 - 0.383 = 0.117
- Apr: -0.3 - 0.383 = -0.683
- May: 0.7 - 0.383 = 0.317
- Jun: 0.4 - 0.383 = 0.017
Sum of squared deviations = 0.047 + 0.000 + 0.014 + 0.467 + 0.100 + 0.000 = 0.628
Using the sample standard deviation (dividing by n-1 = 5):
Variance = 0.628 / 5 = 0.1256
Tracking Error = sqrt(0.1256) = 0.354%
Step 3: Compute the information ratio.
Monthly IR = 0.383 / 0.354 = 1.08
Step 4: Annualise (optional but standard).
To annualise from monthly data, multiply by the square root of 12:
Annualised IR = 1.08 x sqrt(12) = 1.08 x 3.464 = 3.74
This annualised figure of 3.74 would be exceptionally high - the sample is too short to draw strong conclusions. In practice, you'd want at least 36 months of data to produce a statistically meaningful information ratio.
Information Ratio in Python
Here's a practical Python implementation for calculating the information ratio from return series. This uses NumPy and pandas, which are standard tools in quantitative finance workflows.
import numpy as np import pandas as pd def information_ratio( portfolio_returns: pd.Series, benchmark_returns: pd.Series, annualise: bool = True, periods_per_year: int = 252, ) -> float: """ Calculate the information ratio of a portfolio against a benchmark. Parameters ---------- portfolio_returns : pd.Series Period returns for the portfolio (e.g. daily or monthly). benchmark_returns : pd.Series Period returns for the benchmark over the same dates. annualise : bool If True, scale the ratio by sqrt(periods_per_year). periods_per_year : int Trading days (252), months (12), or weeks (52). Returns ------- float The information ratio. """ active_returns = portfolio_returns - benchmark_returns mean_active = active_returns.mean() tracking_error = active_returns.std(ddof=1) if tracking_error == 0: return float("inf") if mean_active > 0 else float("-inf") ir = mean_active / tracking_error if annualise: ir *= np.sqrt(periods_per_year) return ir # --- Example usage with random data --- np.random.seed(42) dates = pd.bdate_range("2025-01-02", periods=252) # Simulated daily returns portfolio = pd.Series(np.random.normal(0.0004, 0.012, 252), index=dates) benchmark = pd.Series(np.random.normal(0.0003, 0.011, 252), index=dates) ir = information_ratio(portfolio, benchmark, annualise=True, periods_per_year=252) print(f"Annualised Information Ratio: {ir:.2f}")
A few things worth noting about this code:
- We use
ddof=1in the standard deviation to get the sample (unbiased) estimate rather than the population figure. This matters when you have fewer observations. - The function handles the edge case where tracking error is zero, which happens if the portfolio perfectly replicates the benchmark.
- Annualisation multiplies by sqrt(periods_per_year) following the standard assumption that returns are independently distributed across periods.
For daily data, use 252 trading days. For monthly data, set periods_per_year=12. For weekly data, use 52. Getting this wrong is one of the most common mistakes in information ratio calculation.
How to Interpret the Information Ratio
An information ratio above 0.5 is generally considered good, above 0.75 is very good, and above 1.0 is exceptional. Most active managers struggle to sustain an IR above 0.5 over long horizons.
Here's a rough guide to interpretation:
| Information Ratio | Interpretation |
|---|---|
| Below 0.0 | Underperforming the benchmark on a risk-adjusted basis |
| 0.0 to 0.25 | Marginal outperformance - could easily be random |
| 0.25 to 0.50 | Modest skill - worth monitoring but not conclusive |
| 0.50 to 0.75 | Good - consistent evidence of active management skill |
| 0.75 to 1.00 | Very good - strong risk-adjusted outperformance |
| Above 1.00 | Exceptional - rare and difficult to sustain |
Context matters enormously. An IR of 0.3 in large-cap equities (where the market is highly efficient) might represent more genuine skill than an IR of 0.6 in a less efficient market like frontier equities or distressed credit.
Time Horizon Effects
The information ratio is sensitive to the measurement period. A manager might show an IR of 1.2 over three years and an IR of 0.4 over ten years. Short measurement windows amplify both luck and skill. The industry standard is to evaluate IR over at least three to five years before drawing firm conclusions.
Statistical significance also matters. An IR of 0.5 based on 60 monthly observations is far more convincing than the same figure based on 12 months. You can approximate the standard error of an estimated IR as roughly 1 / sqrt(N), where N is the number of independent observation periods. So with 36 months of data, the standard error is about 0.17 - meaning an IR estimate of 0.5 is roughly 3 standard errors from zero, which gives reasonable confidence it's genuine.
The Fundamental Law of Active Management
Grinold's fundamental law connects the information ratio to two underlying factors:
IR ≈ IC x sqrt(BR)
Where:
- IC (Information Coefficient) = the correlation between predicted and actual returns. This measures forecasting skill.
- BR (Breadth) = the number of independent bets per year.
This means a manager can achieve a high IR either by being very accurate with a few bets (high IC, low BR) or by being slightly accurate across many bets (low IC, high BR). A quantitative strategy that trades 500 stocks daily has enormous breadth, so even weak forecasting skill can produce a respectable information ratio. A concentrated fund holding 15 positions needs much higher accuracy per bet.
Understanding this relationship is essential for anyone building quantitative trading strategies.
Information Ratio vs Sharpe Ratio
The information ratio and the Sharpe ratio are closely related but answer different questions. The Sharpe ratio measures total risk-adjusted return relative to the risk-free rate. The information ratio measures active risk-adjusted return relative to a chosen benchmark.
| Feature | Information Ratio | Sharpe Ratio |
|---|---|---|
| Numerator | Portfolio return minus benchmark return | Portfolio return minus risk-free rate |
| Denominator | Tracking error (std dev of active returns) | Total volatility (std dev of portfolio returns) |
| Measures | Active management skill relative to benchmark | Total risk-adjusted return |
| Best for | Evaluating active managers vs their benchmark | Comparing any two investments on an absolute basis |
| Benchmark required? | Yes - result depends on benchmark choice | No - uses the risk-free rate as reference |
| Sensitive to leverage? | Less so (both numerator and denominator scale) | Yes (leverage increases both return and vol) |
| Typical "good" value | Above 0.5 | Above 1.0 |
The key insight is this: a portfolio can have an excellent Sharpe ratio but a poor information ratio, or the other way around. Consider an index fund with a Sharpe ratio of 0.7. Its information ratio relative to the index it tracks is approximately zero, because it doesn't deviate from the benchmark.
Conversely, a long-short equity fund might have a Sharpe ratio of 0.5 but an information ratio of 0.8 relative to a market-neutral benchmark, because it consistently generates alpha even though its absolute returns aren't spectacular.
When should you use which? If you're comparing absolute investment opportunities (should I put my money here or there?), use the Sharpe ratio. If you're evaluating whether an active manager is adding value over a specific benchmark, use the information ratio.
For a full treatment of the Sharpe ratio and the risk-free rate within portfolio theory, see our dedicated guide.
Information Ratio vs Other Risk Metrics
The information ratio is one of several risk-adjusted performance metrics. Here's how it compares to other commonly used ratios.
| Metric | Numerator | Denominator | Best Used For |
|---|---|---|---|
| Information Ratio | Active return (vs benchmark) | Tracking error | Evaluating active managers |
| Sharpe Ratio | Excess return (vs risk-free) | Total volatility | Comparing absolute risk-adjusted returns |
| Sortino Ratio | Excess return (vs risk-free) | Downside deviation | Penalising only harmful volatility |
| Treynor Ratio | Excess return (vs risk-free) | Portfolio beta | Evaluating systematic risk compensation |
| Calmar Ratio | Annualised return | Maximum drawdown | Assessing drawdown risk for trend followers |
Sortino Ratio
The Sortino ratio modifies the Sharpe ratio by replacing total volatility with downside deviation. This makes sense when return distributions are skewed - upside volatility isn't really "risk" in any practical sense. The information ratio doesn't make this distinction; it treats upside and downside tracking error equally.
Treynor Ratio
The Treynor ratio divides excess return by portfolio beta rather than total volatility. It's useful when a portfolio is part of a larger, diversified allocation, because only systematic (non-diversifiable) risk matters in that context. The information ratio is more appropriate when evaluating a standalone active mandate.
Calmar Ratio
The Calmar ratio uses maximum drawdown as the risk measure. It's particularly popular among CTA and managed futures allocators who care deeply about worst-case losses. The information ratio tells you nothing about drawdowns directly, which is one of its limitations.
Each metric highlights a different aspect of the risk-return trade-off. In practice, professional fund selectors examine several of these alongside each other rather than relying on any single figure. A good overview of these statistical tools is in our probability and statistics guide.
Limitations of the Information Ratio
The information ratio is a useful metric but it has genuine weaknesses you should be aware of.
It Assumes Normally Distributed Returns
The tracking error in the denominator is a standard deviation, which fully characterises risk only if active returns follow a normal distribution. In reality, active returns often exhibit skewness and fat tails. A manager who occasionally takes large concentrated bets might have an artificially flattering IR during calm periods that collapses during market stress.
Benchmark Choice Matters Enormously
The information ratio is only meaningful relative to the chosen benchmark. Switch from the FTSE All-Share to the FTSE 100 as your benchmark and the same portfolio's IR can change dramatically. This creates room for manipulation - a manager can cherry-pick a benchmark that makes their performance look better. Always check whether the benchmark is genuinely representative of the manager's investment universe.
Short Track Records Are Unreliable
As noted in the interpretation section, the information ratio has substantial estimation error with short histories. An IR of 0.7 over two years could easily be noise. The standard error of roughly 1/sqrt(N) means you typically need 5+ years of monthly data for the estimate to be statistically meaningful.
It Can Be Gamed
Managers aware they'll be evaluated on IR can take hidden risks that don't show up in tracking error. Selling out-of-the-money options, for instance, generates small consistent premiums (boosting the numerator) while creating occasional large losses (fat left tail). The IR looks great until it suddenly doesn't. This is sometimes called "picking up pennies in front of a steamroller."
It Ignores the Magnitude of Outperformance
An IR of 0.5 with 1% active return and 2% tracking error might be less useful to an investor than an IR of 0.5 with 4% active return and 8% tracking error. The ratio is the same, but the absolute value added is four times larger. Investors should examine both the ratio and the absolute level of active return.
Stationarity Assumptions
The IR implicitly assumes that the manager's skill level (and the market environment) remains roughly constant over the measurement period. In practice, teams change, strategies evolve, and market regimes shift. A backward-looking IR may not predict future performance if conditions have changed.
Despite these caveats, the information ratio remains one of the best single metrics for evaluating active management. Just don't use it in isolation. Combine it with drawdown analysis, returns attribution, and qualitative assessment of the investment process. A solid grounding in risk management principles will help you contextualise the numbers properly.
Frequently Asked Questions
What is a good information ratio?
An information ratio above 0.5 is generally considered good for an active manager. Ratios above 0.75 indicate very strong risk-adjusted performance, and anything consistently above 1.0 is exceptional. However, these thresholds vary by asset class and strategy type. In highly efficient markets like US large-cap equities, even a sustained IR of 0.3 represents meaningful skill. In less efficient markets, allocators typically expect higher ratios to compensate for additional liquidity and operational risks.
How is the information ratio different from the Sharpe ratio?
The core difference lies in the reference point. The Sharpe ratio measures return above the risk-free rate divided by total portfolio volatility. The information ratio measures return above a chosen benchmark divided by tracking error (the volatility of the difference between portfolio and benchmark returns). Use the Sharpe ratio to compare absolute investments. Use the information ratio to evaluate whether an active manager is adding value relative to their benchmark.
Can the information ratio be negative?
Yes. A negative information ratio means the portfolio has underperformed its benchmark on average over the measurement period. This indicates the manager's active decisions have destroyed value rather than added it. A negative IR doesn't necessarily mean the portfolio lost money in absolute terms - it means the investor would have been better off simply holding the benchmark. Persistent negative IRs are a strong signal to reconsider whether active management is justified.
How many data points do you need for a reliable information ratio?
As a practical minimum, you need at least 36 monthly observations (three years) for the information ratio to carry statistical weight. The standard error of an estimated IR is approximately 1/sqrt(N), so with 36 months the standard error is about 0.17. This means an estimated IR of 0.5 would be roughly 3 standard errors from zero, providing reasonable confidence it reflects genuine skill. Shorter periods should be treated as preliminary signals rather than conclusive evidence.
Should you annualise the information ratio?
Yes, it's standard practice to annualise. Multiply the per-period IR by the square root of the number of periods per year (sqrt(12) for monthly, sqrt(252) for daily). This puts the figure on a consistent annual scale, making it comparable across managers who report at different frequencies. Be careful to use the correct scaling factor - applying sqrt(252) to monthly data or sqrt(12) to daily data is a common mistake that produces meaningless results.
Does the information ratio work for all types of strategies?
The information ratio works best for strategies with a clearly defined benchmark. It's ideal for evaluating long-only equity managers, fixed-income managers, and other relative-return strategies. For absolute-return strategies like global macro, market-neutral funds, or quantitative trading strategies without a natural benchmark, the Sharpe ratio is often more appropriate. You can use cash or zero as a "benchmark" for absolute-return funds, but at that point the IR and Sharpe ratio become nearly equivalent.
Want to go deeper on Information Ratio: Formula, Calculation & Interpretation 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