What is "alpha"? Returns vs. a benchmark
▸ Pretest — guess, even if you don't know
A hedge fund returns 25% in a year when SPY returns 30%. Is this fund generating alpha?
The core idea
You can always earn returns by simply taking risk — buy SPY, take 100% equity beta, get the equity risk premium over time. That's not skill; it's exposure.
Alpha is the part of your return that exists beyond what your benchmark exposure explains. It's the return per unit of skill, separating signal from "I just took beta."
This single concept is what splits the finance industry into:
- Passive (sell beta cheaply via ETFs)
- Active (claim to generate alpha, charge fees for it)
The cleanest definition (Jensen's alpha)
Run a regression of your strategy's excess returns on the benchmark's excess returns:
Then:
- (the intercept) = return when the market returned the risk-free rate (i.e., the "free" part of your return)
- = your sensitivity to market moves
- = residual noise
Annualize by multiplying by 252 (for daily data) and you have annualized alpha.
This was introduced by Michael Jensen in 1968 and remains the standard definition.
Example interpretation
A strategy with:
- Annual return 18%
- (less market-sensitive than SPY)
- Market return 12%
- Risk-free rate 4%
Expected return from beta exposure alone: .
Actual return: 18%. Alpha = 18% − 9.6% = 8.4%. A meaningful positive alpha.
By contrast, if you ran a strategy with:
- Annual return 18%
- (leveraged market exposure)
Expected from beta: . Actual: 18%. Alpha = 2%. The same 18% return is much less impressive once you adjust for beta.
The information ratio
Alpha alone can be misleading because you can earn 10% alpha with extreme noise around the prediction. The right risk-adjusted version is the information ratio:
Annualized alpha divided by the annualized standard deviation of the regression residuals (your tracking error). IR is the Sharpe ratio of your alpha — and it's what serious active managers report.
Benchmarks:
- IR ≈ 0.5: respectable active manager.
- IR ≈ 1.0: top decile of active managers globally.
- IR > 1.5 sustained: extraordinary.
Why is positive alpha so hard?
In an efficient market, the price already reflects everything publicly known. Any positive expected alpha for one player implies negative expected alpha for the player on the other side. Alpha is approximately zero-sum before fees, and strictly negative-sum after fees and transaction costs.
This isn't a theorem — it's a consequence of efficient markets and the fact that aggregate returns equal market returns. Half of all active dollars beat the benchmark; half don't. After fees, that becomes meaningfully less than half.
This is why passive index funds are the rational default for retail investors with no specific edge, and why active management has been losing AUM to passive for two decades.
What edges produce real alpha?
Realistic categories of retail edge:
- Behavioral biases — institutional investors can't take positions retail can (size limits, mandate restrictions, end-of-quarter window-dressing). Slow-money behavioral patterns persist.
- Long-horizon discipline — most institutions can't tolerate 3-year underperformance even on strategies that work over 10 years.
- Specific niches — small-caps, microcaps, certain emerging markets, illiquid corners with little institutional attention.
- Tax-efficient structuring — direct indexing, harvesting losses.
What does NOT produce retail alpha:
- Reading the news faster than HFTs (you can't).
- Picking stocks based on public earnings announcements (priced in within seconds).
- Following the same indicators as 10 million other retail traders.
We'll see specific strategies in Track D5. The framing here is: the question for any strategy is "what's the source of the edge?" and "why hasn't it been arbed away?" If you can't answer both, you don't have edge.
Try it
Reproduce the lesson's worked example in code:
Implement jensen_alpha(strategy_annual, market_annual, rf, beta): the strategy's annual return minus what its beta exposure alone would have earned, i.e. strategy_annual - (rf + beta * (market_annual - rf)). All inputs are annual rates as decimals (0.18 = 18%).
⧉ Review cardDefine alpha in one sentence.
⧉ Review cardWhat is Jensen's alpha?
⧉ Review cardWhat is the information ratio?
⧉ Review cardWhy is positive alpha hard to generate?
⧉ Review cardWhat are realistic sources of retail alpha?
Explain it back
Two sentences in your own words: what's the difference between "returns" and "alpha," and why does the distinction matter for evaluating a strategy?
◈ Calibration check
Could you compute Jensen's alpha and the information ratio for a strategy given its returns and a benchmark?
1 = guessing · 5 = could teach it
⏻ End of lesson
Mark it read to book its 5 review cards into your deck.
Sources & further reading
- bookBodie, Kane, Marcus (2017), Investments, 11e — §8, 9
- bookGrinold & Kahn (2000), Active Portfolio Management, 2e — §1
- bookAng (2014), Asset Management — §7