← Back to archive

1. The Statistics of Sharpe Ratios

Lo (2002) established the foundational result: the standard error of the Sharpe ratio estimator is approximately 1/√T, where T is the number of independent return observations. For monthly data, a 2-year track record provides T = 24 observations, giving a standard error of approximately 1/√24 ≈ 0.204. For a strategy with a true Sharpe ratio of 1.0 — which is an excellent risk-adjusted performance by any institutional standard — the 95% confidence interval after two years of monthly data is approximately [0.60, 1.40].

This confidence interval is wide enough to include values that are both clearly attractive (1.4) and marginally acceptable (0.6). More importantly, a two-year track record with a measured Sharpe of 1.0 has a one-sided p-value of approximately 0.05/(standard error) — We would need to reject the null hypothesis that the true Sharpe is zero. The test statistic is 1.0/0.204 ≈ 4.9, which is highly significant. But this assumes we know the true Sharpe is 1.0. We do not; We observe a noisy estimate.

The more relevant question is: what Sharpe ratio must we observe in a given sample to be confident the true Sharpe is positive? This is a question about statistical power.

2. Power Analysis

Statistical power is the probability of correctly rejecting the null hypothesis (no skill) when the alternative is true (genuine skill exists). A test with 80% power will correctly identify a skilled trader 80% of the time; it will fail to detect their skill 20% of the time. Conventional practice requires 80% power as a minimum for a well-designed study.

For a one-sided test of whether the true Sharpe ratio exceeds zero at the 5% significance level with 80% power, the required sample size depends on the true Sharpe ratio:

True SharpeMonthly Obs. NeededYearsMin Observable SR
0.387673.00.36
0.531526.30.59
0.716113.40.81
1.0796.61.13
1.5352.91.64
2.0201.72.13
3.090.83.10

Table 1: Sample size requirements for 80% power at the 5% significance level, using monthly return data. "Min Observable SR" is the Sharpe ratio that must be observed in that sample to reject the null. Assumes IID normal returns (an optimistic assumption).

The implications are sobering. A strategy with a true Sharpe of 0.5 — which is above the median for hedge funds — requires over 26 years of monthly data to achieve statistical significance with adequate power. Even a genuinely excellent strategy with a Sharpe of 1.0 requires nearly 7 years. Only strategies with true Sharpe ratios above 2.0 can be validated with less than 2 years of data, and such strategies are exceedingly rare.

from scipy.stats import norm
import numpy as np

def required_sample_size(true_sharpe, alpha=0.05, power=0.80):
    """
    Minimum sample size (monthly observations) to detect
    a given true Sharpe ratio with specified power.
    """
    z_alpha = norm.ppf(1 - alpha)
    z_beta = norm.ppf(power)
    n = ((z_alpha + z_beta) / true_sharpe) ** 2
    return int(np.ceil(n))

def min_significant_sharpe(n_months, alpha=0.05):
    """
    Minimum observed Sharpe ratio to reject H0: SR=0
    at significance level alpha with n monthly observations.
    """
    z_alpha = norm.ppf(1 - alpha)
    return z_alpha / np.sqrt(n_months)

# Examples
print(f"24 months: min SR = {min_significant_sharpe(24):.2f}")
print(f"36 months: min SR = {min_significant_sharpe(36):.2f}")
print(f"60 months: min SR = {min_significant_sharpe(60):.2f}")
# Output:
# 24 months: min SR = 0.34
# 36 months: min SR = 0.27
# 60 months: min SR = 0.21

Wait — the minimum significant Sharpe at 24 months is only 0.34? This seems to contradict the power analysis. The resolution is that the minimum significant Sharpe is the threshold for rejecting the null, but it says nothing about the probability of observing such a Sharpe by chance. The distinction between significance and power is crucial: a test can be significant (low p-value) but underpowered (high probability of missing real effects). The minimum significant Sharpe tells you whether your observation is unlikely under the null; the power analysis tells you whether your test can reliably detect realistic alternatives.

3. Non-Normality Makes It Worse

The results above assume returns are normally distributed. In practice, trading strategy returns exhibit skewness and excess kurtosis, both of which increase the standard error of the Sharpe ratio estimator. Lo (2002) derived the corrected standard error:

σ̂(SR) ≈ √( (1 + ½·SR² − γ₃·SR + ¼·(γ₄−1)·SR²) / T )

where γ₃ is skewness and γ₄ is kurtosis. For a strategy with Sharpe = 1.0, skewness = −0.5 (typical for trend-following), and kurtosis = 5 (typical for futures strategies), the corrected standard error is approximately 30% larger than the IID normal standard error. This means the sample size requirements in Table 1 are underestimates — the true requirements for non-normal strategies are 30–50% larger.

4. Using Daily Data

One apparent solution is to use daily rather than monthly return data, dramatically increasing the sample size. A 2-year track record provides 504 daily observations versus 24 monthly observations — an increase of over 20×. However, this does not provide a proportional increase in statistical power because daily returns are serially correlated.

The effective number of independent observations in a daily return series is approximately T/ρ̃, where ρ̃ accounts for the autocorrelation structure. For a typical systematic strategy with modest serial dependence, the effective sample size from 2 years of daily data is approximately 150–250 independent observations rather than 504. This is still a large improvement over 24 monthly observations, but it does not reduce the required track record length as dramatically as the naive count would suggest.

5. What This Means for Due Diligence

The statistical reality creates an uncomfortable tension with commercial practice. Subscribers evaluating signal providers, fund allocators evaluating managers, and traders evaluating their own strategies typically work with 1–3 years of data. our analysis shows that this is almost always insufficient to distinguish skill from luck at conventional significance levels, unless the strategy has an exceptionally high Sharpe ratio.

This does not mean that short track records are useless — it means they should be interpreted differently. Rather than asking "is this track record significant?", which the answer is almost always "no" for legitimate strategies, the informed evaluator should ask:

Is the observed Sharpe plausible given the strategy type? A trend-following strategy with a 2-year Sharpe of 3.0 is almost certainly overfit or fraudulent, because the structural capacity of trend-following does not support such returns. A mean-reversion strategy with a 2-year Sharpe of 0.8 is consistent with what We would expect from a genuine edge of that type.

What prior probability do I assign to skill? A Bayesian framework allows the evaluator to combine the weak statistical evidence from a short track record with prior beliefs about the probability of skill. If the trader has credentials that independently suggest competence — such as verifiable performance in independently audited competitions across multiple years — the prior probability of skill is higher, and less data is needed to reach a useful posterior estimate.

How does the risk-adjusted profile compare to the return profile? As We discuss in our analysis of trading competition returns, the risk-adjusted characteristics of a track record — Sharpe ratio, drawdown profile, return distribution shape — are more informative than raw returns for assessing skill, because they are harder to achieve by chance.

6. Conclusion

The mathematics of hypothesis testing places a hard lower bound on how quickly We can distinguish skill from luck. For strategies with realistic Sharpe ratios (0.5–1.0), three to seven years of data is the minimum for conventional statistical significance, and non-normality in returns makes even these estimates optimistic. Short track records should not be dismissed, but they should be interpreted with appropriate humility about what they can and cannot tell us. The most informative evidence for skill in trading comes not from any single track record but from the combination of statistical analysis, strategy plausibility, independent verification, and multi-period consistency.

References

  1. Lo, A.W. (2002). "The Statistics of Sharpe Ratios." Financial Analysts Journal, 58(4), 36–52.
  2. Bailey, D.H. and López de Prado, M. (2014). "The Deflated Sharpe Ratio." Journal of Portfolio Management, 40(5), 94–107.
  3. Opdyke, J.D. (2007). "Comparing Sharpe Ratios: So Where Are the p-Values?" Journal of Asset Management, 8(5), 308–336.
  4. Christie, S. (2005). "Is the Sharpe Ratio Useful in Asset Allocation?" MAFC Research Papers, Macquarie University.
  5. Mertens, E. (2002). "Comments on Variance of the IID Estimator in Lo (2002)." Working Paper, University of Basel.