Sortino Ratio¶
OVERVIEW¶
The Sortino Ratio is a risk-adjusted performance metric that divides excess return by downside deviation — the standard deviation of negative returns only — rather than total volatility. Unlike the Sharpe Ratio, which penalizes all volatility equally, the Sortino Ratio penalizes only returns that fall below a defined target, making it more relevant for strategies where upside and downside volatility are asymmetric.
Note
A strategy with large, frequent winning months and rare small drawdowns is penalized by the Sharpe Ratio but correctly rewarded by the Sortino Ratio.
FORMULA¶
| Symbol | Definition |
|---|---|
Rp |
Portfolio return (annualized) |
T |
Minimum acceptable return (MAR) — commonly the risk-free rate or 0% |
σd |
Downside deviation = √(Σ[min(Rᵢ − T, 0)]² / n) |
Downside deviation zeroes out all periods that meet or exceed the target return. Only shortfalls below T contribute to the denominator. This is the core mathematical distinction from the Sharpe Ratio.
WORKED EXAMPLE¶
A momentum swing trading strategy posts the following annual figures:
| Input | Value |
|---|---|
| Annual return | 22.4% |
| Risk-free rate (T) | 5.3% |
| Annualized standard deviation (all returns) | 16.8% |
| Annualized downside deviation (vs. 5.3% hurdle) | 7.1% |
| Ratio | Calculation | Result |
|---|---|---|
| Sharpe Ratio | (22.4 − 5.3) / 16.8 | 1.02 |
| Sortino Ratio | (22.4 − 5.3) / 7.1 | 2.41 |
The gap between 1.02 and 2.41 indicates that most of this strategy's volatility is upside — large winning months — which the Sharpe penalizes but the Sortino correctly ignores.
Tip
A strategy that grinds up slowly with rare catastrophic drawdowns will show a high Sharpe and a low Sortino, revealing dangerous asymmetric drawdown risk that the Sharpe obscures.
HOW TO USE¶
Evaluating options income strategies Strategies such as cash-secured puts or iron condors collect premium most months and occasionally suffer large losses. The Sortino captures whether the income reliably compensates for the occasional blowout, where the Sharpe is distorted by the lopsided distribution.
Comparing managed accounts and CTAs Trend-following CTAs have return distributions with fat right tails and thin left tails. The Sortino correctly ranks these above mean-reversion strategies with symmetric risk profiles.
Screening algorithmic strategies Use the Sortino Ratio as a deployment gate during backtesting.
Note
Require a Sortino Ratio above 1.5 before considering a strategy for live deployment. A Sharpe above 1.0 combined with a Sortino below 0.8 is a red flag — volatility is concentrated in losing periods.
Benchmark thresholds for equity strategies:
| Sortino Ratio | Assessment |
|---|---|
| Above 3.0 | Exceptional |
| 2.0 – 3.0 | Strong |
| 1.0 – 2.0 | Acceptable |
| Below 1.0 | Insufficient downside compensation |
LIMITATIONS¶
| Limitation | Detail |
|---|---|
| Insufficient data | The ratio is unreliable when few losing periods exist. A bull-market backtest may produce a Sortino of 5+ simply because downside deviation is near zero. Require a minimum of 24–36 monthly data points, including at least one meaningful drawdown period. |
| Non-standardized MAR | A strategy benchmarked against 0% produces a higher Sortino than the same strategy benchmarked against 5.3%. Always confirm which MAR is in use before comparing figures across sources. |
| Backward-looking | The Sortino Ratio describes historical risk-return tradeoff only. It has no predictive power over future downside deviation. A strategy with a clean Sortino record through 2023 can still fail in a new volatility regime. |
Note
Always confirm the MAR being used before comparing Sortino Ratios from different sources — the discrepancy can be dramatic.