QTQuant Terminal
B1-05B1·intro·~16 min

What is "alpha"? Returns vs. a benchmark

alphabenchmarkbetacapm

▸ 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:

The cleanest definition (Jensen's alpha)

Run a regression of your strategy's excess returns on the benchmark's excess returns:

rtrf=α+β(rm,trf)+εtr_t - r_f = \alpha + \beta (r_{m,t} - r_f) + \varepsilon_t

Then:

Annualize α\alpha 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:

Expected return from beta exposure alone: 4%+0.7(12%4%)=9.6%4\% + 0.7 \cdot (12\% - 4\%) = 9.6\%.

Actual return: 18%. Alpha = 18% − 9.6% = 8.4%. A meaningful positive alpha.

By contrast, if you ran a strategy with:

Expected from beta: 4%+1.5(12%4%)=16%4\% + 1.5 \cdot (12\% - 4\%) = 16\%. 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:

IR=ασ(ε)\text{IR} = \frac{\alpha}{\sigma(\varepsilon)}

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:

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:

  1. Behavioral biases — institutional investors can't take positions retail can (size limits, mandate restrictions, end-of-quarter window-dressing). Slow-money behavioral patterns persist.
  2. Long-horizon discipline — most institutions can't tolerate 3-year underperformance even on strategies that work over 10 years.
  3. Specific niches — small-caps, microcaps, certain emerging markets, illiquid corners with little institutional attention.
  4. Tax-efficient structuring — direct indexing, harvesting losses.

What does NOT produce retail alpha:

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:

▮ EXERCISE · b1-05-ex1

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 card
Define alpha in one sentence.
The return above what a passive benchmark exposure (with appropriate beta) would have earned for the same period.
⧉ Review card
What is Jensen's alpha?
The intercept of the regression r_strategy - r_f = α + β(r_market - r_f) + ε. The part of your excess return that isn't explained by market beta.
⧉ Review card
What is the information ratio?
α / σ(ε): alpha divided by tracking error (std dev of regression residuals). It's the Sharpe of your alpha. >0.5 respectable, >1.0 top decile.
⧉ Review card
Why is positive alpha hard to generate?
Markets aggregate returns equal market returns, so alpha is roughly zero-sum among active participants — and strictly negative-sum after fees. Half of active dollars must underperform.
⧉ Review card
What are realistic sources of retail alpha?
Behavioral biases institutions can't exploit (size/mandate limits), long-horizon discipline most can't sustain, specific illiquid niches, and tax-efficient structuring.

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