Sortino Ratio

Evaluating downside risk-adjusted return in portfolio performance

Overview

The Sortino Ratio, developed by Frank Sortino in the 1980s, refines the idea behind the Sharpe Ratio. It specifically measures the risk-adjusted return of an investment by considering only downside volatility—the risk of negative returns. Unlike the Sharpe Ratio, which treats all volatility as equally undesirable, the Sortino Ratio distinguishes between "good" volatility (positive returns) and "bad" volatility (negative returns), thus better aligning with typical investor preferences.

Intuitive Explanation

Imagine you're evaluating two runners based on consistency. One occasionally runs faster than expected (positive volatility) while the other frequently runs slower (negative volatility). Naturally, you'd prefer the first, as positive deviations from expectations are beneficial, while negative deviations aren't.

Similarly, investors prefer investments where deviations are positive (exceed expectations) rather than negative. The Sortino Ratio captures this investor preference by only penalizing negative deviations, thus focusing purely on downside risk.

Example:

Consider two portfolios with identical Sharpe Ratios of 1.0 and the same average return of 8%, each with a different return pattern:

  • Portfolio A: Frequent small positive returns with occasional large negative returns

  • Portfolio B: Occasional large positive returns with frequent small negative returns

While both portfolios have the same standard deviation (and thus Sharpe Ratio), Portfolio A would have a better Sortino Ratio because it has less downside deviation, making it more attractive to most investors who are particularly concerned with avoiding losses.

Detailed Mathematical Explanation

The Sortino Ratio Formula

The Sortino Ratio is mathematically defined as:

Sortino Ratio=RpRfσd\text{Sortino Ratio} = \frac{R_p - R_f}{\sigma_d}

where:

  • RpR_p is the annualized expected return of the portfolio.
  • RfR_f is the annualized risk-free rate.
  • σd\sigma_d is the annualized downside deviation of portfolio returns (volatility considering only negative returns).

Downside Deviation (σₘ)

The crucial difference in the Sortino Ratio is its risk measure, downside deviation, defined as:

σd=1nt=1nmin(rp,tT,0)2×252\sigma_d = \sqrt{\frac{1}{n}\sum_{t=1}^{n} \min(r_{p,t}-T,0)^2} \times \sqrt{252}

where:

  • rp,tr_{p,t} is the daily portfolio return at time t.
  • TT is the target return (usually set to zero or the risk-free rate).
  • nn is the number of observations.
  • 252252 is used to annualize daily downside deviation (trading days per year).

Typically, the target TT is set to zero, capturing all negative returns.

Implementation in Our Portfolio Optimizer

Our portfolio optimization application calculates the Sortino Ratio as follows:

Implementation Logic:
  1. Calculate daily returns (rp,tr_{p,t})

  2. Calculate annualized return (RpR_p):

    Rp=mean(rp,t)×252R_p = \text{mean}(r_{p,t}) \times 252
  3. Calculate downside deviation:

    • Identify negative daily returns

    • Compute standard deviation of only these negative returns (downside deviation)

  4. Calculate Sortino Ratio:

    Sortino Ratio=RpRfσd×252\text{Sortino Ratio} = \frac{R_p - R_f}{\sigma_d \times \sqrt{252}}
Example code from our backend:
downside_std = port_returns[port_returns < 0].std()
sortino = 0.0
if downside_std > 1e-9:
    mean_daily = port_returns.mean()
    annual_ret = mean_daily * 252
    sortino = (annual_ret - risk_free_rate) / (downside_std * np.sqrt(252))

Why the Sortino Ratio Matters

Investor-Centric Metric

Emphasizes downside risk, aligning closely with typical investor preferences who are more concerned about losses than gains.

Distinguishes Good from Bad Volatility

Avoids penalizing portfolios that have positive, beneficial volatility, leading to more nuanced risk assessment.

Risk Management Tool

Especially useful during bear markets or volatile periods, providing a clearer risk-adjusted performance perspective when downside protection is particularly important.

Interpreting the Sortino Ratio

Sortino Ratio Less Than 1

Below average performance

Investment's returns don't sufficiently compensate for downside risk. The portfolio may have too many significant negative returns.

Sortino Ratio = 1 to 2

Good performance

Favorable downside risk-return trade-off. The portfolio demonstrates a good balance between returns and protection against losses.

Sortino Ratio Greater Than 2

Excellent performance

Very attractive investment with well-managed downside risk. The portfolio delivers strong returns while effectively limiting losses.

General Rule: Higher Sortino Ratio = better downside risk-adjusted returns

Sortino Ratio vs. Sharpe Ratio: Key Differences

While both ratios measure risk-adjusted returns, they differ fundamentally in how they define and calculate risk:

Sharpe Ratio
  • Risk Measure: Total volatility (standard deviation of all returns)

  • Formula Denominator: σp\sigma_p (standard deviation of all returns)

  • Penalizes: Both upside and downside volatility equally

  • Assumption: Investors are concerned with overall volatility

  • Best Used When: Returns are normally distributed or when both upside and downside risks matter equally

Sortino Ratio
  • Risk Measure: Downside deviation (standard deviation of only negative returns)

  • Formula Denominator: σd\sigma_d (downside deviation)

  • Penalizes: Only negative (harmful) volatility

  • Assumption: Investors are primarily concerned with losing money

  • Best Used When: Returns are asymmetric or when downside protection is a priority

Numerical Example

Consider a portfolio with the following characteristics:

  • Annual return: 12%

  • Risk-free rate: 3%

  • Standard deviation of all returns: 15%

  • Standard deviation of only negative returns: 10%

Sharpe Ratio: (12% - 3%) / 15% = 0.60

Sortino Ratio: (12% - 3%) / 10% = 0.90

This portfolio looks significantly better when evaluated using the Sortino Ratio because it has proportionally less downside risk than total risk.

Advantages over Sharpe Ratio

Investor Focused

More closely aligns with investor concerns, emphasizing losses over volatility in general. This psychological alignment with how investors actually perceive risk makes the metric more intuitive.

Better in Volatile Markets

Provides clearer insights during market downturns or heightened volatility. When markets become turbulent, the Sortino Ratio helps distinguish between portfolios that maintain downside protection versus those that don't.

Practical Example:

In a year where the market has significant upswings and downswings, two portfolios might have identical Sharpe Ratios. However, the portfolio that captured more of the upswings while avoiding downswings would have a higher Sortino Ratio, correctly reflecting its superior risk management approach from an investor's perspective.

Limitations

Sensitive to Threshold Choice

The choice of threshold (usually zero or risk-free rate) can significantly affect results. Different threshold choices can lead to different rankings of portfolios, potentially leading to inconsistent evaluations.

Statistical Significance

Requires enough negative observations to accurately estimate downside deviation. With limited data or in strong bull markets, there may be too few negative returns to reliably calculate the ratio.

References

  • Sortino, F. A., & Price, L. N. (1994). "Performance Measurement in a Downside Risk Framework." Journal of Investing, 3(3), 59-64.

  • Sortino, F. A., & Van Der Meer, R. (1991). "Downside Risk." Journal of Portfolio Management, 17(4), 27-31.

  • Sortino, F. A., & Satchell, S. (2001). Managing Downside Risk in Financial Markets. Butterworth-Heinemann.

  • Kaplan, P. D., & Knowles, J. A. (2004). "Kappa: A Generalized Downside Risk-Adjusted Performance Measure." Journal of Performance Measurement, 8, 42-54.

Related Topics

Sharpe Ratio

The precursor to the Sortino Ratio that measures excess return per unit of total volatility.

Omega Ratio

A performance metric that evaluates the probability-weighted ratio of gains to losses for a threshold return.

Calmar Ratio

A risk-adjusted performance measure that relates average annual compound returns to maximum drawdown.