Options Pricing · Lesson 7 of 11

Vega: Volatility Sensitivity

How option prices respond to changes in implied vol · 15 min

Before this lesson

Builds on the Greeks introduced in Lessons 4–6 (Delta, Theta, Gamma) — same formula family, one more term.

The Volatility Greek

Vega (ν) measures how much an option's price shifts for a one-percentage-point change in implied volatility. It might be the single most important Greek for a professional, because professional options trading is, at its core, mostly about trading volatility itself — not about guessing which way a stock is headed.

ν = ∂V / ∂σ

An ATM one-year call with ν = 0.40 picks up $0.40 in value for every 1-point rise in implied vol. Push IV from 20% to 25% and that call gains roughly $2.00 from vega alone — the stock itself doesn't have to move an inch.

A small aside worth knowing: despite the name, vega isn't actually a Greek letter. Traders made it up. Academic papers sometimes use κ (kappa) or λ (lambda) instead for the same concept — "vega" just stuck because it sounds Greek enough and conveniently starts with a V, for volatility.

The Formula

ν = S · n(d₁) · √T / 100

with n(d₁) the standard normal PDF. Like gamma, this formula is identical for calls and puts — same strike, same expiry, same vega, no exceptions. Once again, put-call parity is why: C − P = S − PV(K) differentiated with respect to σ gives ∂C/∂σ = ∂P/∂σ directly.

The /100 just rescales from "per unit of vol" to "per percentage point" — a convenience, not a law of nature. Some textbooks skip that division, which means their answer is 100x bigger than what you'd get here. Always check which convention you're reading before comparing numbers across sources.

Vega Is Largest for ATM Long-Dated Options

Two things drive how much vega an option carries:

  • Moneyness: vega peaks right at the ATM strike and tapers off on either side. Deep OTM options are close to binary bets — they'll be worth either a lot or nothing — so a small shift in vol barely changes that calculus. Deep ITM options are close to certain to be exercised regardless, so vol doesn't move the needle much there either.
  • Time to expiry: vega scales with √T. A 1-year ATM option carries roughly √12 ≈ 3.46× the vega of a 1-month ATM option — more time on the clock means more room for volatility to actually matter.

The upshot is that long-dated options behave more like a bet on volatility than a bet on direction. A 2-year LEAPS option might sit around $0.80 of vega — a 5-point move in vol shifts its price by $4, often more than the delta-driven move you'd get from a comparable stretch of time.

Implied Volatility: The Market's Forecast

Black-Scholes takes σ as one of its inputs, but here's the catch: nobody can actually observe σ directly. What you do observe is the option's market price. So traders run the formula backwards — given this market price, what σ would make Black-Scholes spit out that exact number? That backed-out σ is implied volatility (IV).

IV isn't a forecast of how volatile the stock will actually be — think of it instead as the market's collective price tag for uncertainty. Historically, IV runs above realized volatility by roughly 1–3 percentage points on average, a gap known as the variance risk premium. That gap is why selling options has historically been profitable on average — at the cost of the occasional brutal loss when volatility spikes without warning.

The Volatility Surface: Where Black-Scholes Breaks Down

If Black-Scholes were exactly right, every option on the same stock and expiry would carry the same implied vol. In reality, they don't come close. Plot IV against strike and you get the famous volatility smile — or in equities, more often a skew.

Equity skew: for index options like SPX and SPY, OTM puts consistently trade at higher IV than ATM options, which in turn trade higher than OTM calls. It's lopsided, not symmetric — a skew rather than a smile — and a few things explain why:

  1. Crash risk demand: investors are willing to pay up for put protection as portfolio insurance, and that demand for OTM puts specifically pushes their IV higher.
  2. Leverage effect: when stock prices drop, companies effectively become more leveraged — debt stays fixed while equity value shrinks — and that raises volatility. Crashes and vol spikes tend to arrive together.
  3. Stochastic volatility: real-world volatility isn't a constant at all — it moves around, and it tends to move opposite to stock returns.

FX smile: currency options tend to show something closer to a real, symmetric smile — both OTM puts and OTM calls trade rich relative to ATM. That fits currencies, which can spike sharply in either direction with roughly equal plausibility.

VIX: The Fear Index

The CBOE Volatility Index — the VIX — is arguably the single most-watched number in markets. It captures what the market expects S&P 500 volatility to be over the next 30 days, built from a basket of SPX options spanning many strikes.

It's quoted as an annualized volatility percentage. A VIX of 20 says the market expects roughly 20% annualized volatility, which works out to daily moves around 20%/√252 ≈ 1.26%.

Some context for where VIX has actually landed historically:

  • 2017: VIX averaged 11.1 — the calmest year on record. Options were historically cheap all year.
  • 2008 (Lehman crisis): VIX hit 89.5 in October 2008. Options got extraordinarily expensive.
  • March 2020 (COVID crash): VIX peaked at 85.5 on March 18, 2020 — the second-highest reading ever recorded.
  • Normal range: roughly 12–25 in calm markets, 25–40 under stress, 40+ during outright crises.

It's nicknamed the "fear index" because it spikes exactly when investors are scrambling to buy protective puts. A rising VIX simply means the options market is pricing in more uncertainty — that reading says nothing on its own about whether stocks are actually going up or down.

Vega in Portfolio Management

Any sizable options book has a net vega — how sensitive its total value is to a broad shift up or down in the volatility surface. A portfolio that's long vega gains when IV rises, benefiting from fear and uncertainty. One that's short vega — a fund that systematically sells options to collect premium, say — gains when IV falls and gets hurt when it spikes.

The 2018 "Volmageddon" episode is the cautionary tale everyone in the industry knows. Several funds were running short-VIX, short-vega strategies through instruments tied to VIX futures. On February 5, 2018, VIX doubled in a single day, a move nobody had modeled for. One product, XIV, lost 96% of its value overnight and was forcibly liquidated. Understanding vega — and respecting how fast volatility can spike — isn't an academic exercise. For anyone actually trading options, it's closer to a survival requirement.

Coding ExercisePython · runs in browser
+100 XP
Implement `compute_vega(S, K, T, r, sigma)` returning vega per 1% vol move.
Write your solution, then run