Strasmore Research
Learn Matt ConnorBy Matt Connor · Updated 2026-07-15

What Is Option Vega? Volatility Sensitivity

Vega measures an option's sensitivity to implied volatility. Watch IV spike on a real SPY call, see vega grow with time, and drive the earnings vol crush.

Vega is the option greek that measures sensitivity to implied volatility — how much an option's price moves when IV changes by one point. It is the greek of volatility, not direction: an option can be flat on delta and still swing on vega when the market re-prices how much a stock might move. The clearest demonstration is a real one: watch our SPY $740 call's implied volatility over its life.

When fear rises, vega pays

QueryThe SPY $740 call's implied volatility spiked when SPY fell, early June 2026
The exact SQL behind every number
SELECT date,
       round(avg(implied_volatility) * 100, 1) AS iv_pct
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-17'
GROUP BY date ORDER BY date

For most of the trace the call's implied volatility sat in the low teens, near 13.2%. Then in early June, as SPY sold off sharply, it spiked toward the low twenties — the market abruptly paid up for protection, and every SPY option repriced higher on that alone, before a single cent of directional move. That repricing is vega at work: the option gains when implied volatility rises and loses when it falls. A long option — call or put — always has positive vega. It is the same force, running in reverse, behind the "vol crush" that hits option buyers after an earnings report, when the event passes and IV collapses even if the stock moved their way.

Vega grows with time to expiry

How much a one-point IV move is worth depends on how long the option has to live. Vega runs opposite to gamma and theta — largest on the longest-dated options:

QueryAt-the-money SPY vega grows with time to expiry (2026-07-13)
The exact SQL behind every number
SELECT multiIf(days_to_expiry<=7,'0-7 days',days_to_expiry<=30,'8-30 days',
               days_to_expiry<=90,'31-90 days','90+ days') AS time_to_expiry,
       round(avg(vega), 3) AS avg_vega
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol = 'SPY' AND abs(delta) BETWEEN 0.45 AND 0.55
GROUP BY time_to_expiry ORDER BY min(days_to_expiry)

A long-dated option has more days over which a change in expected volatility can play out, so a one-point IV shift is worth far more to it than to a contract expiring this week — an at-the-money 90-day SPY option's vega, near 2.741, dwarfs the 0.295 of a same-day one. That is why volatility trades and long-horizon positions are dominated by vega, while a 0DTE contract barely registers an IV change — its story is gamma and theta.

Vega peaks at the money

Across strikes, vega follows the same bell as gamma — largest at the money, smaller in the wings:

QuerySPY call vega peaks at the money (~30 days out, 2026-07-13)
The exact SQL behind every number
SELECT multiIf((strike_price/underlying_close-1)<-0.04,'deep ITM',
               (strike_price/underlying_close-1)<-0.015,'ITM',
               (strike_price/underlying_close-1)<0.015,'ATM',
               (strike_price/underlying_close-1)<0.04,'OTM','deep OTM') AS moneyness,
       round(avg(vega), 3) AS avg_vega
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol = 'SPY' AND option_type = 'C' AND days_to_expiry BETWEEN 25 AND 40
GROUP BY moneyness ORDER BY avg(strike_price/underlying_close)

An at-the-money option has the most time value at stake, so a change in implied volatility moves it the most. Combine the two: the maximum-vega option is at the money AND long-dated — the opposite corner of the board from where gamma and theta concentrate.

Trading volatility with vega

Vega turns options into a way to trade volatility itself, apart from direction. Buy a call and a put at the same strike (a straddle) and the deltas roughly cancel, leaving a position dominated by vega and gamma: it profits if the stock makes a big move OR if implied volatility rises, and bleeds if the market goes quiet. Earnings season is the purest example — IV on a reporting stock climbs for days beforehand, lifting every long option on vega alone; then the report lands, uncertainty resolves, IV collapses, and the vol crush can gut an option's value in minutes. A trader who buys options into earnings is long vega whether they meant to be or not, which is why the level of implied volatility going in matters as much as the direction of the move. The full five-greek picture is in the option greeks explained.

FAQ

What is vega in options in simple terms?

Vega is how much an option's price changes when implied volatility moves one point. A vega of 1.0 means the option gains about $1 if IV rises a point and loses about $1 if it falls. It measures exposure to volatility, not to the stock's direction.

Why does vega increase with time to expiry?

A longer-dated option has more time for a change in expected volatility to matter, so a one-point IV shift is worth more to it. Short-dated options have little time left, so their price barely responds to IV changes.

What is a vol crush?

A vol crush is a sharp drop in implied volatility, often right after an earnings report or known event. Long options have positive vega, and that fall in IV cuts their value — which is how a buyer can be right on direction and still lose money once the event passes.

Is high vega good or bad?

It depends on your view of volatility. If you expect implied volatility to rise, positive vega (being long options) helps; if you expect it to fall, it hurts. Sellers of options are short vega and profit when IV declines.

Which options have the most vega?

Long-dated, at-the-money options. They carry the most time value, and vega scales with both time to expiry and proximity to the money — the opposite corner of the board from where gamma and theta are largest.