Skip to content

Sharpe Ratio

Excess return per unit of total volatility. Computes the mean of the return series, subtracts the risk-free rate, and divides by the sample standard deviation of returns.

When to use: The default risk-adjusted-return metric. Use to compare portfolios, funds, or strategies on a single number that combines return and risk. Higher is better; >1 is generally good, >2 is excellent (using monthly data).

Calculator

Formula

Sharpe=RpRfσp\text{Sharpe} = \frac{\overline{R_p} - R_f}{\sigma_p}

Variables

SymbolNameDescriptionUnit
SharpeSharpe RatioExcess return per unit of total volatilityinteger
ReturnsPeriodic ReturnsSequence of periodic returns as decimals (e.g. 0.05 for 5%)%
RfRisk-Free RatePer-period risk-free rate as a decimal (use the same period as the returns)%

Real-Life Examples

Example 1: Five-Period Portfolio

Periodic returns of 10%, 15%, 5%, 20%, 8%. Per-period risk-free rate is 3%.

Given

Returns = Rf = 0.03

Step-by-Step

1.Mean return = (10+15+5+20+8)/5 = 11.6%
2.σ (sample) = 0.0594
3.Sharpe = (0.116 − 0.03) / 0.0594 ≈ 1.448
Result:1.45

Sharpe of 1.45 — strong risk-adjusted performance. Each unit of total volatility has earned 1.45× the excess return.

Frequently Asked Questions

Depends on the period of returns. Using monthly data: above 1 is decent, above 2 is excellent, above 3 is exceptional. Using annual returns the bar is roughly the same numerically. Be skeptical of self-reported Sharpe ratios from short backtests — they're trivially gameable.

Yes when comparing across portfolios with different sampling frequencies. Annualized Sharpe = Sharpe × √(periods per year). Monthly Sharpe of 0.5 → annualized ≈ 0.5 × √12 ≈ 1.73.

When return distributions are highly skewed or fat-tailed — Sharpe assumes return symmetry. Strategies that sell tail risk (e.g. short volatility) can show high Sharpe in calm regimes but blow up in tails. Use Sortino or max-drawdown alongside.

This calculator uses the sample standard deviation (divisor n-1), which is the convention in nearly all finance textbooks and Bloomberg. Population (divisor n) is rarely used in practice.