The Option Greeks Explained: Delta to Rho
Delta, gamma, theta, vega and rho — the five option greeks, demonstrated by tracing one real SPY call through its whole life against the stock.
The option greeks measure how an option's price reacts to the forces that move it — the stock, time, and volatility. Each greek answers one question: if this changes, how much does the option change? They are not quoted by the exchange; they are derived from the option's market price with an options-pricing model, and we compute them for every contract on the US options tape. The fastest way to understand them is to watch one real option live through its whole life.
Here is a single SPY call — the $740 strike expiring June 18, 2026 — traced from May 1 to its final week:
The exact SQL behind every number
SELECT date,
round(avg(option_close), 2) AS call_price
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-17'
GROUP BY date ORDER BY dateThat one contract opened the window at $7.22 and, on a stock that moved only a few percent over the same seven weeks, swung violently — several times its starting value at the peak, a fraction of it at the trough, then rallying into expiry, as the chart shows. That amplified, bending response is what the five greeks describe, each measuring one source of it.
The five greeks
- Delta — how much the option moves for a $1 move in the stock. It is the option's speed, and roughly the odds it finishes in the money. Full detail: what option delta is.
- Gamma — how much delta itself changes for that $1 move. The acceleration behind the swing above. See option gamma.
- Theta — how much value the option loses per day as expiration nears (time decay). See option theta.
- Vega — how much the option moves when implied volatility changes by a point. See option vega.
- Rho — how much the option moves when interest rates change by a point; the one most traders watch least.
Reading the swing through the greeks
Early in the trace, with the stock near the $740 strike and weeks to run, the call behaved like roughly half a share: a $1 move in SPY moved it about fifty cents — delta near 0.5. As SPY climbed through the strike, delta rose toward 1 and the call sped up; that acceleration is gamma, and gamma was strongest exactly when the stock sat on the strike. Every day that passed, the call quietly shed a little value to the clock — theta — and that bleed sped up as June 18 approached. When SPY dropped hard in early June, the call's implied volatility jumped, and the extra fear priced into every option lifted its value independent of direction — vega.
None of these is fixed. Change the stock, the calendar, or the volatility, and all five reprice — which is why the greeks are a snapshot of an option's risk at a moment, not a constant. A market maker holding thousands of contracts reads them the way a driver reads a dashboard, the same instinct behind how market makers make money.
Where the greeks come from
Feed a pricing model the five things the market gives you — the stock price, the strike, the time to expiry, the interest rate, and the option's own market price — and it backs out the volatility the price implies (that is implied volatility) and reports the slopes: delta, gamma, theta, vega, rho. Our tape recomputes them every session from the closing prices, which is how the trace above exists at all.
Which greek matters when
Delta and gamma rule directional and short-dated trades — the closer to expiry, the more violent the pairing, which is the engine of a 0DTE trade. Theta is the seller's income and the buyer's tax, and when an option expires sets how fast it bites. Vega dominates long-dated positions and earnings plays, where the story is volatility rather than direction. Read each greek's own page for the chart of how it behaves and what moves it.
FAQ
What are the option greeks in simple terms?
They are five sensitivity numbers. Delta is the option's speed versus the stock, gamma its acceleration, theta its daily time decay, vega its reaction to volatility, and rho its reaction to interest rates. Together they describe how an option's price will move before it moves.
Are the greeks quoted by the exchange?
No. The exchange quotes the option's price; the greeks are computed from that price with a pricing model. Two vendors can report slightly different greeks for the same contract when they use different model assumptions. The values here are computed from official closing prices.
Which greek matters most?
It depends on the trade. Directional traders live on delta and gamma; sellers watch theta; earnings and long-dated positions turn on vega. For a same-day option, gamma dominates everything.
Why did the call above move so much more than SPY?
Leverage and curvature. A near-the-money option controls 100 shares for a fraction of their cost, so its percentage swings are far larger than the stock's — and since delta itself changes as the stock moves (gamma), those swings are not even linear.
How often do the greeks change?
Continuously, as their inputs do. Delta changes with every move in the stock (that is gamma), theta grinds a little lower each day, and vega reprices whenever implied volatility shifts. Each is a snapshot at a moment.