Quant 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

Three terms first, because everything below leans on them:

You can always earn returns by simply taking risk. Buy SPY, hold it, take full market beta. Over time you collect the equity risk premium — the extra return stocks pay over safe assets as compensation for their risk. That's not skill; it's exposure.

Alpha (α\alpha, the Greek letter alpha) is the part of your return that exists beyond what your benchmark exposure explains. It's the return attributable to skill. It separates real 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 — a statistical procedure that finds the straight line best fitting a cloud of data points — of your strategy's excess returns on the benchmark's excess returns. ("Excess return" means your return minus the risk-free rate — what a safe government bill would have paid you anyway.)

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

Read the symbols aloud first. rtr_t ("r sub t") is your strategy's return in period tt — the subscript tt indexes time, like a loop variable over days. rfr_f ("r sub f") is the risk-free rate. rm,tr_{m,t} ("r sub m, t") is the market's return in the same period. εt\varepsilon_t ("epsilon sub t," a Greek letter) is that period's leftover noise.

In words: your return above the risk-free rate equals a fixed amount (alpha), plus beta times the market's return above the risk-free rate, plus random noise. The regression finds the alpha and beta that best fit your data.

Then:

If you ran this on daily data, the alpha comes out per day. Annualize it — convert it to a per-year figure — by multiplying by 252, the number of trading days in a year.

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\%. (The \cdot dot means "times." Read it: 4% plus 0.7 times the gap between 12% and 4%, which is 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 it. The right risk-adjusted version is the information ratio:

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

In words: the information ratio equals alpha divided by "sigma of epsilon" — your annualized alpha divided by how much the leftover noise spreads around, measured as the standard deviation of the regression residuals. That spread has a name: your tracking error — how wobbly your returns are around what beta alone predicts. 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. Every trade has two sides. If one side has positive expected alpha, the other side must have negative expected alpha. Alpha is approximately zero-sum — one player's gain is another's loss — before fees. After fees and transaction costs it's strictly negative-sum: the players as a group lose money to costs.

This isn't a theorem. It follows from efficient markets plus simple arithmetic: all investors together are the market, so their combined return equals the market return. Half of all active dollars beat the benchmark; half don't. After fees, meaningfully less than half.

This is why passive index funds are the rational default for retail investors with no specific edge. It's also why active management has been losing AUM — assets under management, the money investors have placed with them — to passive for two decades.

What edges produce real alpha?

Realistic categories of retail edge:

  1. Behavioral biases — big institutional investors can't take positions retail can. They face size limits, mandate restrictions (rules on what a fund is allowed to hold), and end-of-quarter window-dressing (dressing up holdings to look good in reports). Slow-money behavioral patterns persist because of this.
  2. Long-horizon discipline — most institutions can't tolerate 3 years of underperformance, even on strategies that work over 10 years. You can.
  3. Specific niches — small-caps, microcaps, certain emerging markets, illiquid corners (assets that trade rarely) with little institutional attention.
  4. Tax-efficient structuring — direct indexing, harvesting losses to reduce taxes.

What does NOT produce retail alpha:

We'll see specific strategies in Track D5. The framing here: for any strategy, ask "what's the source of the edge?" and "why hasn't it been arbed away?" — meaning, why haven't professionals already traded the profit out of existence? 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