Vega
Sensitivity to implied volatility. How much an option's price changes per 1% IV move.
Vega is the partial derivative of option price with respect to implied volatility (∂V/∂σ). It measures how much an option's price changes for a 1 percentage point change in implied volatility, all else equal. Vega is always positive for long options — both calls and puts benefit from rising IV. It is highest for ATM, long-dated options and is the primary greek for managing volatility exposure and trading the volatility risk premium.
Where φ is the standard normal PDF, S is spot, K is strike, σ is implied vol, T is time to expiry in years, r is risk-free rate, and q is dividend yield. Vega is identical for calls and puts at the same strike.
- Long vega: benefits from IV expansion. Straddles, strangles, and long options are long vega.
- Short vega: benefits from IV contraction (vol crush). Credit spreads and iron condors are short vega.
- ATM, long-dated = max vega: a 90-DTE ATM option has ~3x the vega of a 10-DTE ATM option.
- VRP edge: IV systematically exceeds realized vol, so short-vega strategies have a structural edge over time.
How Vega Works
Vega answers a critical question: if the market suddenly reprices implied volatility, how much does my option move? A trader holding a straddle with combined vega of $1.50 gains $150 per contract for every 1-point rise in IV, regardless of which direction the stock moves. This makes vega the primary greek for volatility traders — those who have a view on whether IV is too high or too low relative to expected future realized volatility.
The vega surface has a distinctive shape. In the moneyness dimension, vega peaks at ATM and falls toward zero for deep ITM and deep OTM strikes. In the time dimension, vega increases with the square root of time — a 4x increase in DTE roughly doubles vega. This means long-dated options (LEAPS) are powerful tools for expressing volatility views with limited gamma risk, while short-dated options have low vega and are primarily theta/gamma instruments.
Vega itself is not constant. It changes with volatility (that sensitivity is vomma) and with the underlying price (that sensitivity is vanna). Vomma is particularly important for OTM options: as IV rises, their vega increases (positive vomma), creating a convex payoff that benefits from vol-of-vol. This is why tail-risk hedges (deep OTM puts) can explode in value during volatility spikes — their vomma amplifies their vega as IV surges.
In the context of dealer positioning, net vega exposure across the chain drives how market makers react to IV changes. When aggregated as Vanna Exposure (VEX), the cross-sensitivity between delta and vol becomes a macro signal for how IV changes will translate into directional hedging flows.
Compute Vega via API
spot(query, required) — underlying price, e.g.550strike(query, required) — option strike price, e.g.550dte(query, required) — days to expiration, e.g.45sigma(query, required) — implied volatility as decimal, e.g.0.20type(query, required) —callorputr(query, optional) — risk-free rate, default0.05q(query, optional) — dividend yield, default0
{
"first_order": {
"delta": ...,
"gamma": ...,
"theta": ...,
"vega": 0.7682,
"rho": ...
},
"second_order": { ... }
}
curl -H "X-Api-Key: YOUR_KEY" \
"https://lab.flashalpha.com/v1/pricing/greeks?spot=550&strike=550&dte=45&sigma=0.20&type=call&r=0.05&q=0.013"
Why Vega Matters for Trading
Vega is the $ per 1% change in IV. Long vega = profit if vol rises; short vega = profit if vol falls. Knowing net vega is how you manage vol exposure.
- What it measures
- ∂V/∂σ — option value change per 1 percentage point change in implied volatility.
- What it signals
- How much IV changes will move your P&L.
- Why we measure it
- Vol can change without spot moving. Vega isolates the vol-exposure component of the trade.
- Who uses it
- Vol traders, event traders, premium sellers monitoring risk.
How to read Vega
- Profits from IV expansion
- Pre-event long straddles win
- Stress-regime hedges
- Calendar long-wing structures
- Profits from IV compression
- Post-earnings crush profits
- Short strangles collect
- Dangerous into IV spikes
- Balanced multi-leg structures
- Diagonal vs horizontal
- IV-agnostic P&L
- Pure gamma / theta trade
Rules of thumb
- Vega is largest ATM, longer DTE. 60DTE ATM has much more vega than 5DTE ATM. Long-dated structures carry more IV risk.
- Net vega matters, not leg vega. Multi-leg strategies can be vega-flat despite large leg vegas.
- Pair with IV rank. Short vega when IV is historically high; long vega when historically low.
- Events are vega events. The EPS-morning vega reset is predictable — plan trades around it, don't ignore.
- Cross-expiry vega isn't linear. Near-month vega moves differently from far-month — see veta.
Related Concepts
How vega itself changes with volatility (∂²V/∂σ²). Vega convexity — critical for tail-risk positions.
How delta changes with vol (∂²V/∂S∂σ). The cross-derivative linking vega to directional exposure.
The market's forward-looking volatility estimate. The input that vega measures sensitivity to.
The structural edge from IV exceeding realized vol. Captured by short-vega strategies.
How IV changes translate into directional dealer hedging flows through the vanna channel.
Time decay. A vol crush mimics accelerated theta — both collapse time value.
Learn More
Full endpoint reference for computing all Black-Scholes Greeks.
How vega changes with vol. Why OTM puts explode in value during volatility spikes.
How volatility changes shift delta, connecting vega exposure to directional risk.
The directional complement to vega's volatility sensitivity.