Resampled Efficiency
Michaud's fix for the fragile mean-variance optimizer — simulate many plausible return histories, optimize each, and average the portfolios so estimation noise cancels instead of getting amplified.
Prerequisites: Pitfalls of Mean-Variance Optimization, The Efficient Frontier
A plain mean-variance optimizer takes your best guesses for returns and risks and hands back a single "optimal" portfolio. The trouble, covered in Pitfalls of Mean-Variance Optimization, is that those guesses are noisy, and the optimizer treats every decimal place as gospel. Change one asset's estimated return by a fraction of a percent and the "optimal" weights can swing from a big long to a big short. Resampled efficiency, invented by Richard Michaud, is a way to stop the optimizer from taking your noisy estimates so literally.
The idea is disarmingly simple: instead of trusting one set of estimates, admit you don't know them exactly, generate many alternative sets that are all consistent with your data, optimize a portfolio for each, and then average the portfolios. The lucky over-bets in one scenario get cancelled by the unlucky ones in another, and what survives the averaging is the part of the allocation that holds up across many plausible worlds.
How it works, step by step
You start with your point estimates of the mean-return vector and covariance matrix . Then you repeat the following many times (say 500):
- Simulate. Draw a fresh, fake return history of length from your estimated and . This is a Monte Carlo bootstrap (Bootstrap and Resampling): each draw is a world that could plausibly have produced your data.
- Re-estimate. Compute new sample estimates from that fake history.
- Optimize. Trace the The Efficient Frontier for those estimates and record the optimal weights at each rung of risk (or each return target).
After all the runs, you average the weight vectors at each rung across every simulation. That averaged set of portfolios is the resampled frontier.
where is the number of simulations, indexes the risk rung, and is the optimal weight vector from simulation . In words: the resampled portfolio at each risk level is just the average of all the optimizers' answers for that level.
Resampled efficiency optimizes many bootstrapped versions of the data and averages the portfolios. Averaging cancels the estimation noise that a single mean-variance run would instead lever into, so the result is smoother, more diversified, and more stable through time.
Worked example
Take two nearly identical assets with equal true expected returns, equal 20% volatility, and correlation 0.9. Suppose one sample happens to give estimated returns of 8.3% and 7.7%. A single mean-variance run reads that 0.6% gap as a near-arbitrage between twins and prescribes something wild, roughly 250% long the "winner" and 150% short the "loser."
Now resample. Across 500 simulated histories, the winner and loser trade places about half the time, because the true means are equal. When you average all 500 optimal weight vectors, the giant long and short cancel out, and the resampled allocation lands near a sensible 50/50 split. Same inputs, but the answer stopped chasing noise. Out of sample, that 50/50 book keeps far more of its Sharpe and turns over a fraction as much.
Where it helps and where it misleads
Resampling shines because it regularizes without you having to pick a penalty: no-short and position limits emerge naturally from averaging, and turnover collapses because the weights barely move as new data arrives. It is closely related to shrinkage (Ledoit-Wolf Covariance Shrinkage) and to Bayesian averaging (The Black-Litterman Model), all three pull the aggressive point solution back toward something humbler.
Resampling reuses the same and to generate every simulated world, so any bias baked into your original estimates survives the averaging untouched. If your expected returns are systematically wrong, resampled efficiency gives you a stable, well-diversified portfolio built on the wrong forecast.
Think of it as democracy for optimizers: run the vote 500 times under slightly different conditions and keep only what wins consistently. The bets that depend on one lucky data point never get a majority, so they quietly disappear.
The honest caveats: resampled efficiency has no clean closed-form justification the way The Black-Litterman Model does, it can leave tiny leftover weights in assets that should be zero, and the method is patented, which limited its academic adoption. Still, as a practical antidote to the error-maximizing optimizer, it works, and the intuition, don't trust one draw when you can average many, is worth carrying into any estimation problem.
Related concepts
Practice in interviews
Further reading
- Michaud (1998), Efficient Asset Management
- Michaud & Michaud (2008), Estimation Error and Portfolio Optimization