Finance11 min read·

Treynor Ratio: Formula, Calculation & Interpretation 2026

A clear guide to the Treynor ratio - how it measures return per unit of systematic risk using beta, the formula, Python code, and when to use it instead of the Sharpe ratio.

What Is the Treynor Ratio?

The Treynor ratio measures how much excess return a portfolio generates per unit of systematic risk. It's named after Jack Treynor, one of the founders of modern portfolio theory, who developed the metric in the 1960s alongside his work on the Capital Asset Pricing Model (CAPM). Where the Sharpe ratio uses total volatility as its risk measure, the Treynor ratio uses beta - the portfolio's sensitivity to market movements.

This distinction matters. Total volatility includes both systematic risk (market-wide movements that can't be diversified away) and unsystematic risk (company-specific or strategy-specific risk that diversification eliminates). If a portfolio is well diversified, most of its unsystematic risk has already been removed, and the only risk that remains is systematic. In that case, beta is a more appropriate risk measure than standard deviation - and the Treynor ratio is a more meaningful performance metric than the Sharpe ratio.

The intuition is straightforward: investors shouldn't be compensated for risk they could have eliminated through diversification. The Treynor ratio rewards portfolios that earn high returns relative to the systematic risk they carry, regardless of how much total volatility they experience. A concentrated equity portfolio and a diversified equity portfolio might have the same total return, but if the diversified portfolio achieved that return with lower beta, its Treynor ratio will be higher.

In 2026, the Treynor ratio is used across institutional asset management, portfolio construction, and the evaluation of fund managers who operate as part of a larger multi-manager allocation. It's particularly relevant when assessing sub-portfolios that will be combined into a broader investment programme.


The Treynor Ratio Formula

The Treynor ratio equals the portfolio's excess return over the risk-free rate, divided by the portfolio's beta.

Treynor Ratio = (Rp - Rf) / Beta_p

Where:

  • Rp = the portfolio's average return over the measurement period
  • Rf = the risk-free rate over the same period (typically the yield on short-term government bonds)
  • Beta_p = the portfolio's beta relative to the market benchmark

The Numerator: Excess Return

The numerator (Rp - Rf) is identical to the Sharpe ratio's numerator. It captures how much the portfolio returned above the risk-free alternative. If a portfolio returned 12% annualised while the risk-free rate was 4%, the excess return is 8%. This is the return an investor earned for taking on market risk rather than holding government bonds.

The Denominator: Portfolio Beta

Beta measures how sensitive the portfolio is to movements in the overall market. A beta of 1.0 means the portfolio moves in line with the market. A beta of 1.5 means the portfolio tends to rise 1.5% for every 1% market gain (and fall 1.5% for every 1% market decline). A beta of 0.7 means the portfolio captures only 70% of the market's moves.

By dividing excess return by beta rather than standard deviation, the Treynor ratio isolates the reward per unit of non-diversifiable risk. This is the core difference between the Treynor ratio and the Sharpe ratio, and it determines when each metric is more appropriate.


How Beta Works in the Treynor Ratio

To understand why the Treynor ratio uses beta, you need the distinction between systematic and unsystematic risk.

Systematic Risk

Systematic risk affects the entire market. Recessions, interest rate changes, geopolitical events, and inflation shifts all fall into this category. No amount of diversification eliminates systematic risk - it's the price of being invested in the market at all. Beta quantifies a portfolio's exposure to this type of risk.

Unsystematic Risk

Unsystematic risk is specific to individual holdings. A company's CEO resigns unexpectedly, a product launch fails, or a regulatory change hits one sector. These events affect individual stocks or sectors but can be diversified away by holding a broad range of positions. In a well-constructed portfolio of 30 or more uncorrelated holdings, unsystematic risk is largely eliminated.

Why the Treynor Ratio Ignores Unsystematic Risk

Under the assumptions of CAPM, investors are only compensated for bearing systematic risk. The market doesn't reward you for holding a concentrated portfolio with high unsystematic risk - you could have diversified that risk away for free. The Treynor ratio reflects this by using beta (systematic risk only) rather than standard deviation (total risk).

This makes the Treynor ratio most appropriate for portfolios that are already well diversified or that form part of a larger diversified allocation. If you're evaluating a single concentrated fund in isolation, its unsystematic risk matters to you, and the Sharpe ratio or Sortino ratio would be more informative.


Worked Example

Let's walk through a numerical example comparing two portfolios using the Treynor ratio.

Given data:

Portfolio APortfolio BMarket
Annual return14%11%10%
Beta1.30.81.0
Standard deviation22%15%18%

Assume the risk-free rate is 4%.

Portfolio A:

Treynor Ratio = (14% - 4%) / 1.3 = 10% / 1.3 = 7.69

Portfolio B:

Treynor Ratio = (11% - 4%) / 0.8 = 7% / 0.8 = 8.75

Interpretation: Portfolio B has a higher Treynor ratio despite earning a lower total return. For every unit of systematic risk (beta), Portfolio B generated 8.75 percentage points of excess return compared to Portfolio A's 7.69. If both portfolios are components of a larger diversified allocation, Portfolio B used market risk more efficiently.

Now compare this with the Sharpe ratio:

Portfolio A Sharpe: (14% - 4%) / 22% = 0.45

Portfolio B Sharpe: (11% - 4%) / 15% = 0.47

In this case, the Sharpe ratio tells a similar story - Portfolio B is slightly better on a risk-adjusted basis. But the margin is much wider with the Treynor ratio because Portfolio A's high beta (1.3) penalises it more heavily when systematic risk is the denominator. This is exactly the scenario where the Treynor ratio adds the most insight: when two portfolios have meaningfully different betas.


Calculating the Treynor Ratio in Python

Here's a practical Python implementation that computes the Treynor ratio from a return series and a benchmark. It uses ordinary least squares regression to estimate beta, then calculates the ratio.

import numpy as np import pandas as pd from scipy import stats def estimate_beta( portfolio_returns: pd.Series, benchmark_returns: pd.Series, ) -> float: """ Estimate portfolio beta via OLS regression of portfolio excess returns on benchmark excess returns. """ slope, _, _, _, _ = stats.linregress(benchmark_returns, portfolio_returns) return slope def treynor_ratio( portfolio_returns: pd.Series, benchmark_returns: pd.Series, risk_free_rate: float = 0.0, annualise: bool = True, periods_per_year: int = 252, ) -> dict: """ Calculate the Treynor ratio for a portfolio. Parameters ---------- portfolio_returns : pd.Series Period returns for the portfolio (e.g. daily). benchmark_returns : pd.Series Period returns for the market benchmark. risk_free_rate : float Risk-free rate expressed per period. Default is 0. annualise : bool If True, annualise the excess return before dividing by beta. periods_per_year : int Trading days (252), months (12), or weeks (52). Returns ------- dict Treynor ratio, beta, and annualised excess return. """ excess_portfolio = portfolio_returns - risk_free_rate excess_benchmark = benchmark_returns - risk_free_rate beta = estimate_beta(excess_portfolio, excess_benchmark) mean_excess = excess_portfolio.mean() if annualise: mean_excess *= periods_per_year if beta == 0: return { "treynor_ratio": float("inf") if mean_excess > 0 else 0.0, "beta": beta, "annualised_excess_return": mean_excess, } ratio = mean_excess / beta return { "treynor_ratio": ratio, "beta": beta, "annualised_excess_return": mean_excess, } # --- Example usage --- np.random.seed(42) dates = pd.bdate_range("2025-01-02", periods=252) # Simulated market returns market = pd.Series(np.random.normal(0.0004, 0.01, 252), index=dates) # Portfolio with beta of roughly 1.2 portfolio = 0.001 + 1.2 * market + pd.Series( np.random.normal(0, 0.005, 252), index=dates ) # Daily risk-free rate (approx 4% annual) rf_daily = 0.04 / 252 result = treynor_ratio(portfolio, market, risk_free_rate=rf_daily) print(f"Beta: {result['beta']:.3f}") print(f"Annualised Excess Return: {result['annualised_excess_return']:.2%}") print(f"Treynor Ratio: {result['treynor_ratio']:.4f}") # Compare with Sharpe sharpe = ( (portfolio.mean() - rf_daily) / portfolio.std(ddof=1) ) * np.sqrt(252) print(f"Sharpe Ratio: {sharpe:.4f}")

A few points about this implementation:

  • Beta is estimated via regression of portfolio excess returns on benchmark excess returns. This is the standard approach, equivalent to the covariance of portfolio and benchmark returns divided by the variance of benchmark returns.
  • The risk-free rate is expressed per period. With daily data and a 4% annual rate, the daily figure is approximately 0.04 / 252. Pass this consistently to both the numerator and the beta estimation.
  • Annualisation scales the numerator only. Beta is unitless and doesn't change with the return frequency, so only the excess return component is annualised.
  • For production use, you'd want to handle edge cases like near-zero beta values and add confidence intervals around the beta estimate, since statistical uncertainty in beta directly affects the reliability of the Treynor ratio.

How to Interpret the Treynor Ratio

A higher Treynor ratio indicates better risk-adjusted performance relative to systematic risk. But the number only has meaning when compared to other portfolios measured against the same benchmark and over the same time period.

ComparisonInterpretation
Portfolio A Treynor > Portfolio B TreynorA generated more excess return per unit of beta
Portfolio Treynor > Market TreynorThe portfolio outperformed on a systematic-risk-adjusted basis
Negative Treynor (positive beta)The portfolio earned less than the risk-free rate
Negative Treynor (negative beta)Needs careful interpretation - negative beta reverses the sign

The Market's Own Treynor Ratio

The market benchmark has a beta of 1.0 by definition. Its Treynor ratio equals its excess return: (Rm - Rf) / 1.0 = Rm - Rf. Any portfolio with a Treynor ratio above this figure has outperformed the market on a systematic-risk-adjusted basis. This gives you a natural yardstick for evaluation.

Negative Beta Complications

If a portfolio has a negative beta (it tends to move opposite to the market), the Treynor ratio's interpretation flips. A negative numerator divided by a negative denominator produces a positive ratio, which could be misleading. In practice, negative-beta portfolios are rare outside of dedicated hedging strategies, but it's worth checking the sign of beta before drawing conclusions from the Treynor ratio.

Don't Compare Across Benchmarks

The Treynor ratio is only meaningful when all portfolios being compared use the same market benchmark. A UK equity fund benchmarked against the FTSE 100 and a US equity fund benchmarked against the S&P 500 will have betas measured against different markets. Comparing their Treynor ratios directly is misleading.


Treynor Ratio vs Sharpe Ratio

The Treynor ratio and Sharpe ratio both measure risk-adjusted return, but they use different definitions of risk. The Sharpe ratio uses standard deviation (total risk), while the Treynor ratio uses beta (systematic risk only). This distinction determines when each metric is more informative.

FeatureTreynor RatioSharpe Ratio
Risk measureBeta (systematic risk)Standard deviation (total risk)
Assumes diversification?Yes - ignores diversifiable riskNo - captures all volatility
Best forDiversified portfolios or sub-portfolios in a larger allocationStandalone portfolio evaluation
DenominatorPortfolio beta relative to benchmarkStandard deviation of portfolio returns
Penalises unsystematic risk?NoYes
Model dependenceRequires CAPM / single-factor frameworkModel-free
Sensitivity to benchmark choiceHigh - different benchmarks produce different betasNone - no benchmark required
Typical use caseComparing managers within a multi-manager structureComparing any two investments
Formula(Rp - Rf) / Beta_p(Rp - Rf) / StdDev(Rp)

When the Sharpe Ratio Is Better

The Sharpe ratio is the better choice when you're evaluating a portfolio in isolation - when the total risk of the portfolio matters to you. If you're an individual investor choosing between a handful of funds for your entire portfolio, you care about all the volatility you'll experience, not just the systematic component. The Sharpe ratio captures this.

The Sharpe ratio also avoids the model assumptions embedded in the Treynor ratio. Beta depends on choosing a benchmark and assumes a linear relationship between portfolio and market returns. If the portfolio has non-linear risk exposures (common with options or alternative strategies), beta may be a poor summary of risk, and the Treynor ratio will be unreliable.

When the Treynor Ratio Is Better

The Treynor ratio is more appropriate when you're assessing a portfolio that will be combined with other investments. In a multi-manager or multi-strategy structure, each sub-portfolio's unsystematic risk is diversified away at the aggregate level. What matters is how efficiently each component uses its systematic risk budget.

For example, a pension fund allocating across ten equity managers cares about each manager's Treynor ratio because the idiosyncratic risks of the individual managers largely cancel out in the aggregate portfolio. The fund's total risk is driven by the systematic exposure of the combined allocation, making beta the relevant risk measure for each component.

The Treynor ratio also reveals whether a manager is generating genuine alpha or simply taking more systematic risk. A portfolio with a high return and a high beta might look impressive, but its Treynor ratio could be mediocre - the returns were just compensation for market exposure, not skill.


Treynor Ratio vs Other Risk Metrics

The Treynor ratio sits alongside several other risk-adjusted performance measures. Each answers a slightly different question about the relationship between risk and return.

MetricRisk MeasureWhat It CapturesBest Used For
Treynor RatioBetaReturn per unit of systematic riskSub-portfolios within diversified allocations
Sharpe RatioStandard deviationReturn per unit of total volatilityGeneral-purpose standalone comparison
Sortino RatioDownside deviationReturn per unit of harmful volatilityAsymmetric strategies, options, hedge funds
Information RatioTracking errorActive return per unit of benchmark deviationActive manager evaluation vs a specific benchmark
Jensen's AlphaBeta (via CAPM regression)Absolute excess return above CAPM expectationIdentifying genuine manager skill
Calmar RatioMaximum drawdownReturn relative to worst peak-to-trough lossTrend-following and CTA evaluation

Treynor vs Jensen's Alpha

Jensen's alpha and the Treynor ratio are closely related - both are rooted in CAPM. Jensen's alpha equals the portfolio's return minus the return predicted by CAPM given its beta: Alpha = Rp - [Rf + Beta_p * (Rm - Rf)]. A positive alpha means the portfolio outperformed its expected return for the level of systematic risk taken.

The difference is that Jensen's alpha is an absolute measure (expressed in percentage points), while the Treynor ratio is a ratio. A portfolio with high alpha and high beta might have a modest Treynor ratio because the systematic risk exposure is large. The Treynor ratio normalises for beta, giving a per-unit figure.

Treynor vs Sortino

The Sortino ratio replaces standard deviation with downside deviation, focusing only on returns below a target. It addresses a different limitation of the Sharpe ratio than the Treynor ratio does. Where the Treynor ratio's insight is about systematic vs total risk, the Sortino ratio's insight is about downside vs total volatility. For a well-diversified portfolio with asymmetric returns, you might want to examine both.

Treynor vs Information Ratio

The information ratio measures active return (relative to a benchmark) per unit of tracking error. It's the metric of choice for evaluating benchmark-relative mandates. The Treynor ratio measures excess return over the risk-free rate per unit of beta. Both use a benchmark, but in different ways: the information ratio cares about deviation from the benchmark, while the Treynor ratio cares about sensitivity to the benchmark.


Limitations of the Treynor Ratio

The Treynor ratio is a useful metric, but its reliability depends on assumptions that don't always hold in practice.

Beta Estimation Is Noisy

Beta is estimated from historical return data, typically via regression. The estimate depends on the time period, return frequency, and benchmark chosen. A portfolio's beta calculated over the past year may differ substantially from its beta over the past five years. This estimation noise feeds directly into the Treynor ratio, making it less stable than it appears. Confidence intervals around beta estimates are often wide, particularly for strategies with non-linear risk exposures.

It Assumes CAPM Holds

The Treynor ratio is grounded in the single-factor CAPM framework, which assumes that beta fully describes a portfolio's systematic risk. In reality, returns are influenced by multiple factors - value, momentum, size, quality, and others. A portfolio that loads heavily on the value factor might have a moderate market beta but significant exposure to systematic risks not captured by beta. Multi-factor models like the Fama-French three-factor or five-factor model provide a more complete picture, but the Treynor ratio doesn't incorporate these additional dimensions.

Not Useful for Non-Diversified Portfolios

The Treynor ratio only makes sense for portfolios where unsystematic risk is small relative to systematic risk. A concentrated portfolio of three stocks has enormous unsystematic risk that beta doesn't capture. Using the Treynor ratio for such a portfolio ignores the majority of its actual risk, producing a misleadingly favourable picture. For concentrated holdings, the Sharpe ratio or a downside risk measure like the Sortino ratio is more appropriate.

Benchmark Dependency

The Treynor ratio requires choosing a market benchmark, and the choice affects the result. An emerging-market equity portfolio benchmarked against the MSCI World will have a different beta (and therefore a different Treynor ratio) than the same portfolio benchmarked against the MSCI Emerging Markets index. There's often no single "correct" benchmark, introducing subjectivity into what appears to be an objective metric.

It Doesn't Capture Tail Risk

Like the Sharpe ratio, the Treynor ratio is based on average returns and a single risk parameter. It tells you nothing about the shape of the return distribution, extreme events, or maximum drawdowns. A portfolio with a high Treynor ratio might still suffer catastrophic losses in a market crash if its beta increases during stress periods - a phenomenon known as conditional beta or asymmetric beta. Supplementing the Treynor ratio with tail risk measures is essential for a complete assessment.

Negative or Near-Zero Beta Issues

When beta is very close to zero, the Treynor ratio becomes extremely large and unstable. Small changes in the beta estimate produce enormous swings in the ratio. For market-neutral or low-beta strategies, the Treynor ratio is essentially undefined and shouldn't be used. The Sharpe ratio or information ratio are better alternatives in these situations.


Frequently Asked Questions

What is a good Treynor ratio?

A good Treynor ratio depends on the market environment and risk-free rate. As a baseline, the market's own Treynor ratio equals its excess return over the risk-free rate (since the market's beta is 1.0). Any portfolio with a Treynor ratio above this figure is generating more return per unit of systematic risk than the market itself. In an environment where equities return 10% and the risk-free rate is 4%, the market's Treynor ratio is 6.0. A portfolio with a Treynor ratio of 8.0 or higher is meaningfully outperforming on a risk-adjusted basis. Context matters: compare the ratio against the benchmark and peer group rather than relying on a fixed threshold.

How is the Treynor ratio different from the Sharpe ratio?

Both ratios measure risk-adjusted return, but they define risk differently. The Sharpe ratio divides excess return by standard deviation, which captures total volatility - both systematic (market-related) and unsystematic (specific to the portfolio). The Treynor ratio divides excess return by beta, which captures only systematic risk. The practical implication is that the Treynor ratio is more appropriate for well-diversified portfolios or sub-portfolios within a larger allocation, where unsystematic risk has been diversified away. The Sharpe ratio is better for evaluating a standalone investment where total volatility matters to the investor.

Can the Treynor ratio be negative?

Yes, and there are two distinct cases. First, if the portfolio's return is below the risk-free rate while beta is positive, the numerator is negative and the ratio is negative - the portfolio failed to compensate for the systematic risk it took. Second, if the portfolio has a negative beta (it moves opposite to the market), the sign of the ratio depends on the interaction between the numerator and denominator. A negative beta combined with a positive excess return produces a negative Treynor ratio, which doesn't mean poor performance - it means the formula's interpretation breaks down. Always check the sign of beta before interpreting a negative Treynor ratio.

When should I use the Treynor ratio instead of other metrics?

Use the Treynor ratio when evaluating portfolios that are part of a broader diversified allocation. If you're a pension fund or endowment selecting among several equity managers, the unsystematic risk of each manager largely cancels out in the aggregate portfolio. What matters is how efficiently each manager converts systematic risk into return, which is exactly what the Treynor ratio measures. For standalone portfolio evaluation, the Sharpe ratio is usually more appropriate. For strategies with asymmetric return profiles, the Sortino ratio adds more insight. For benchmark-relative mandates, the information ratio is the standard choice.

Why does the Treynor ratio use beta instead of standard deviation?

Beta isolates the component of risk that investors are actually compensated for bearing. Under the CAPM framework, the market rewards exposure to systematic risk - broad economic forces that affect all assets - but doesn't reward idiosyncratic risk that could have been diversified away at no cost. Standard deviation lumps both types together. By using beta, the Treynor ratio asks: "How much return did this portfolio generate for the market risk it took?" This is a more precise question for diversified portfolios, because only their systematic risk persists at the aggregate level. The trade-off is that beta depends on CAPM assumptions and a choice of benchmark, whereas standard deviation is model-free.

Want to go deeper on Treynor 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