Definition
Vega is one of the five option Greeks — the partial derivatives that describe how an option's theoretical price responds to a change in each of its inputs. Specifically, vega measures how much an option's premium changes when implied volatility moves by one percentage point, with all other inputs held constant.
A vega of 0.10 means the option's price is expected to change by about ten cents for every one-point move in implied volatility. Vega is always positive for long options (both calls and puts) and always negative for short options — because higher uncertainty always makes the right to buy or sell more valuable.
Why it matters
How it works
Vega in the practitioner dashboard
Understanding Options 2E frames the Greeks as a five-gauge dashboard that turns qualitative questions about option behaviour into hard estimates. Delta answers "how much does my position move per dollar in the stock?" Theta answers "what is my daily holding cost?" Vega answers "what am I implicitly betting about volatility?"
For a retail trader, vega matters most in two scenarios. The first is any position held through an event — an earnings release, a Fed announcement, a clinical-trial readout — where implied volatility inflates in advance and deflates immediately after. Buying high-vega options the day before such an event means buying expensive insurance that reprices downward the next morning even if the directional guess was correct. The volatility crush is not a secondary concern; it can exceed the directional gain. The second scenario is any spread or multi-leg position where the vegas of the legs net out to something unexpected. A long straddle (long call plus long put at the same strike) has large positive vega — it benefits from any rise in implied volatility regardless of direction. A short strangle (short OTM call plus short OTM put) has large negative vega — it benefits from calm and suffers from volatility spikes.
Vega as a formal partial derivative
Python Fundamentals for Finance approaches vega from the other direction — not as a trading intuition but as a mathematical object. The Black-Scholes-Merton formula collapses five inputs — spot price, strike, time to expiry, risk-free rate, and volatility — into a single theoretical price. The five Greeks are the five partial derivatives of that price function with respect to each input. Vega is specifically the partial derivative with respect to the volatility input, denoted sigma.
In code, vega has a closed-form expression that takes only a few lines to implement using standard numerical libraries. This is in contrast to implied volatility itself, which must be back-solved: the market quotes an option price, and you find the volatility value that makes the Black-Scholes formula reproduce that price. That root-finding step — typically solved with Newton-Raphson or Brent's method — is what gives implied volatility its name. The market is not quoting a volatility; it is quoting a price, and traders invert the formula to extract the implied vol.
Why vega scales with time and moneyness
Both sources agree on the pattern: vega is largest for at-the-money options with substantial time remaining, and shrinks toward zero as expiration approaches or as the option moves deep in or out of the money.
The intuition is that vega reflects how much the range of possible outcomes matters for a contract's value. A deep in-the-money option is nearly certain to be exercised and behaves more like the underlying stock — the volatility of the path matters less because the destination is nearly fixed. A deep out-of-the-money option is nearly certain to expire worthless — more volatility might rescue it, but it is starting from so far out that the odds barely move. At the money, the contract sits at the tipping point where any move in volatility meaningfully shifts the probability of finishing in the money. Long time remaining amplifies this further because volatility has more time to compound its effect.
Building intuition with a covered-call example
Suppose you own stock and sell a covered call. The option chain shows the sold call has a vega of -0.06. This means that for every one-point rise in implied volatility, the short call gains $0.06 in value against you — the option you sold becomes more expensive to buy back. A volatility spike of five points adds roughly $0.30 to the cost of closing the position, regardless of whether the stock itself has moved. Combined with the delta and theta on the position, vega makes the full picture clear: you are rooting for slow sideways drift with declining implied volatility, not just for the stock to stay below the strike.