Options Greeks Explained: Delta, Gamma, Theta, Vega and Rho

The options Greeks are the partial derivatives of an option's value with respect to its inputs — they are the coordinate system in which professional options risk is expressed, hedged, and budgeted. A position is not really "long two calls"; it is a vector of exposures (delta, gamma, vega, theta, and the cross-partials) that you net across a book and steer toward a target. This guide gives the closed forms, the numbers, and the structural relationships — especially the gamma-theta-vega triangle that governs every options trade — for traders who already know what a call is.

All Greeks below are derived from the Black-Scholes framework with spot S, strike K, maturity T, rate r, dividend yield q, and volatility sigma, using the standard d1/d2. They are sensitivities at a point, and every one of them moves as the market moves — which is the entire difficulty.

Delta: direction and hedge ratio

Delta is dV/dS. For a call, delta = exp(-qT) N(d1) (0 to ~1); for a put, delta = -exp(-qT) N(-d1) (~-1 to 0). It is the share-equivalent exposure (50 deltas ≈ 50 shares) and the quantity you short to hedge directional risk. It approximates the risk-neutral probability of finishing ITM, but that probability is precisely N(d2), not delta — they diverge with volatility and time.

MoneynessApprox. call deltaBehavior
Deep ITM0.90–1.00Stock-like
ATM~0.50Maximum optionality
Deep OTM0.00–0.10Lottery ticket

Delta hedging is only instantaneously neutral, because delta itself moves — which is gamma.

Gamma: convexity and the source of rehedging

Gamma is d2V/dS2 = exp(-qT) pdf(d1) / (S sigma sqrt(T)), identical for a call and a put at the same strike. It peaks at-the-money and explodes into expiry for ATM options. Long gamma means your delta moves in your favor — gains accelerate, losses decelerate; short gamma is the reverse and is the mechanism behind most options blow-ups. A trader short ATM gamma a day before expiry holds a position whose delta can swing from +0.5 to -0.5 on a small move, forcing violent rehedging into a market that is already against them.

The dollar-gamma P&L of a delta-hedged position over a step is:

hedged P&L ≈ 0.5 * Gamma * S^2 * ( (dS/S)^2 - sigma^2 * dt )

You are long realized variance, short implied variance — the engine of gamma scalping and the bridge to volatility trading.

Theta: the price of convexity

Theta is dV/dt (usually quoted per calendar day, negative for long options). It is not an independent risk — it is the rent you pay for gamma. Under Black-Scholes the two are linked: in a zero-rate world, for a delta-hedged option,

theta ≈ -0.5 * Gamma * S^2 * sigma^2

So long gamma is exactly long theta-cost, and short gamma earns theta. There is no free lunch: the premium a seller collects as theta is fair compensation for the gamma risk taken on. This identity is the most important structural fact in options trading.

Vega: exposure to the volatility input

Vega is dV/dsigma = S exp(-qT) pdf(d1) sqrt(T), the same for calls and puts, quoted per 1 vol point. It is largest for longer-dated ATM options and is the exposure you carry to changes in implied volatility — distinct from gamma, which is exposure to realized volatility. You can be right on direction and lose if IV falls: buying options into an earnings event often disappoints because the post-event IV crush drops vega-driven value even when the stock moves your way.

Note vega and gamma both peak ATM but with different maturity profiles: gamma concentrates in short-dated options, vega in long-dated ones. A position can be long vega and short gamma simultaneously (e.g. long a far-dated option, short a near one — a calendar spread), which is the entire point of trading the term structure.

Rho: rate sensitivity

Rho is dV/dr, usually the least important Greek and negligible for short-dated options, but material for LEAPS and in high-rate regimes. A two-year option can carry meaningful rho; a one-week option's rho rounds to zero.

Second-order Greeks that actually matter

A delta-hedged book drifts overnight even with the underlying flat because of the cross-partials:

GreekDefinitionWhy it bites
Vannad(delta)/d(sigma) = d(vega)/dSSkew exposure; hedges drift as vol moves
Charmd(delta)/d(t)Delta decays over time and weekends
Vommad(vega)/d(sigma)Vega convexity; matters for vol-of-vol trades
Speedd(gamma)/dSGamma instability near expiry

Vanna and charm are why dealers rehedge into the close and around expiry even on quiet days, and why "pin risk" and known dealer-flow effects appear near large open-interest strikes.

Computing and aggregating a book

A position's risk is the sum of its Greeks across legs and contracts. The net vector is what you actually hold.

import numpy as np
from scipy.stats import norm

def greeks(S, K, T, r, sigma, q=0.0, option="call"):
    sqrtT = np.sqrt(T)
    d1 = (np.log(S / K) + (r - q + 0.5 * sigma**2) * T) / (sigma * sqrtT)
    d2 = d1 - sigma * sqrtT
    pdf, dq, dr = norm.pdf(d1), np.exp(-q * T), np.exp(-r * T)
    sign = 1 if option == "call" else -1
    delta = sign * dq * norm.cdf(sign * d1)
    gamma = dq * pdf / (S * sigma * sqrtT)
    vega = S * dq * pdf * sqrtT / 100                  # per vol point
    theta = ((-S * dq * pdf * sigma / (2 * sqrtT)
              - sign * r * K * dr * norm.cdf(sign * d2)
              + sign * q * S * dq * norm.cdf(sign * d1)) / 365)
    return dict(delta=delta, gamma=gamma, vega=vega, theta=theta)

def book_greeks(positions, S):
    """positions: list of (qty, contract_multiplier, kwargs)."""
    net = dict(delta=0.0, gamma=0.0, vega=0.0, theta=0.0)
    for qty, mult, kw in positions:
        g = greeks(S=S, **kw)
        for k in net:
            net[k] += qty * mult * g[k]
    return net

# Short strangle: short 1 OTM call + short 1 OTM put, 100x multiplier
book = [
    (-1, 100, dict(K=110, T=0.08, r=0.05, sigma=0.22, option="call")),
    (-1, 100, dict(K=90,  T=0.08, r=0.05, sigma=0.25, option="put")),
]
print(book_greeks(book, S=100))

Reading a position through its Greeks

An iron condor or short strangle is, in Greek terms, roughly delta-neutral, short gamma, long theta, short vega: it earns slowly as time passes and vol stays calm, and loses fast on a large move or a vol spike. The Greeks tell you exactly what you are betting on before any P&L prints.

LegDeltaGammaThetaVega
Short call-0.30-0.04+0.05-0.12
Short put+0.28-0.04+0.05-0.13
Net-0.02-0.08+0.10-0.25

The net row is the trade: near-flat directionally, short gamma (fears big moves), collecting theta, short vega (fears a vol spike). Manage the book by watching that row and adjusting when any exposure drifts past your budget.

Practical risk management

  • Trade the net vector, not legs. Aggregate across the whole book.
  • Size by risk, not premium. A small credit can hide large short-gamma tail

risk; use sound position sizing.

  • Budget gamma into expiry. Short-gamma risk sharpens violently in the final

days; close or roll unless you specifically want that exposure.

  • Separate vega from gamma. Hedge realized-vol risk (gamma) and implied-vol risk

(vega) deliberately; they require different instruments across the term structure.

  • Rehedge against costs. Gamma scalping captures realized vol but accrues

transaction costs; hedge frequency is an optimization, not a reflex.

Honest limitations

Black-Scholes Greeks assume constant volatility and lognormal returns, so they misstate risk exactly when it matters — in jumps, gaps, and vol spikes. They are local sensitivities that are unstable near expiry and in the wings, where higher- order terms dominate and finite-difference Greeks become noisy. The skew means a single sigma per name is a simplification; desks compute Greeks along the whole volatility surface and carry vanna and volga risk that the five first-order Greeks miss entirely. Treat the Greeks as a high-quality linear approximation that must be re-estimated continuously, not as exact risk.

Conclusion

The Greeks are the language of options risk: delta (direction), gamma (convexity), theta (time), vega (implied vol), rho (rates), plus the cross-partials that make a hedged book drift. Their power is in the relationships — gamma is rented with theta, realized-vol risk (gamma) is distinct from implied-vol risk (vega), and the net vector across a book tells you exactly what you are betting on. Master those structural links and you can isolate the trade you actually want and avoid the surprises that catch newcomers, which is the foundation of volatility trading and options-based risk management.

#options greeks #delta #gamma #theta #vega #options trading