What Is Option Delta? A Plain-English Guide
Option delta measures how much an option moves per $1 in the stock. Watch it track a real SPY call across the strike and see the moneyness S-curve.
Delta is the first and most-used option greek: it measures how much an option's price moves for a $1 move in the underlying stock. A call with a delta of 0.50 gains about $0.50 (times 100, per contract) when the stock rises $1. It is the option's speed relative to the stock — and, conveniently, a rough read on the odds it finishes in the money. The clearest way to see delta is to watch it on a real contract as the stock moves.
Delta tracks the stock
Here is our SPY $740 call again, this time its delta plotted against SPY across the same seven weeks:
The exact SQL behind every number
SELECT date,
round(avg(underlying_close), 2) AS spy_price,
round(avg(delta), 3) AS delta
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-17'
GROUP BY date ORDER BY dateFollow the two lines. When SPY opened the window near $720, below the $740 strike, the call's delta sat around 0.327 — it moved less than half a share for each dollar in SPY. As the stock pushed up through $740 the delta climbed toward 1; when SPY fell back under the strike in early June, delta dropped with it. Delta is not a fixed property of the option — it is the option's live sensitivity, and it rises and falls as the stock crosses the strike.
Delta changes with moneyness
Freeze a single day and look across strikes instead, and the same relationship draws a smooth S-curve — deep in-the-money calls near 1.0, at-the-money calls near 0.50, far out-of-the-money calls near 0:
The exact SQL behind every number
SELECT multiIf((strike_price/underlying_close-1)<-0.04,'deep ITM (>4% in)',
(strike_price/underlying_close-1)<-0.015,'ITM (1.5-4% in)',
(strike_price/underlying_close-1)<0.015,'ATM (within 1.5%)',
(strike_price/underlying_close-1)<0.04,'OTM (1.5-4% out)',
'deep OTM (>4% out)') AS moneyness,
round(avg(delta), 2) AS avg_delta
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)A deep-in-the-money call already moves nearly one-for-one with the stock (delta near 1) — it is a stock substitute. A deep-out-of-the-money call barely reacts (delta near 0) — a lottery ticket. Only the at-the-money strike sits on the steep middle of the curve, near 0.50, where delta is most sensitive to the next move. That steep middle is exactly where our traced call lived, which is why its delta swung so far.
Three ways to read one number
- Rate of change — the dollar move in the option per $1 in the stock.
- Share equivalent — a 0.50-delta call is like being long 50 shares; a position's total delta is its true directional exposure.
- Rough probability — a 0.30-delta option finishes in the money roughly 30% of the time (an approximation, not a guarantee).
How fast delta itself moves along that S-curve is the second greek, gamma — the two are inseparable, and gamma is largest for at-the-money options near expiry, laid out in option gamma.
Calls vs. puts, and why delta sizes a position
A call gains when the stock rises, so its delta is positive (0 to +1); a put gains when the stock falls, so its delta is negative (0 to -1). An at-the-money call near +0.50 has a mirror-image put near -0.50. That sign is what lets traders combine options into a target exposure: buy a call (+delta) and a put (-delta) at the same strike and the deltas nearly cancel, leaving a position that profits from a move rather than a direction — a bet on implied volatility.
Delta is also the share-equivalent, which is how desks size and hedge. A trader short 200 calls at 0.50 delta is effectively short 100 × 200 × 0.50 = 10,000 shares, and buys 10,000 shares to sit delta-neutral. As the stock moves, gamma changes that delta and the hedge has to be adjusted — the constant re-hedging behind how market makers make money and the full option greeks picture.
FAQ
What is delta in options trading?
Delta is how much an option's price changes for a $1 change in the underlying stock. A 0.50-delta call rises about $0.50 (per share) when the stock rises $1. It also approximates the option's share-equivalent exposure and the rough probability it expires in the money.
What does a delta of 0.5 mean?
It means the option moves about half as fast as the stock — roughly $0.50 per $1 — and behaves like owning 50 shares per contract. A 0.50 delta is typical of an at-the-money option, and it implies a rough 50% chance of finishing in the money.
Is a higher delta better?
Not inherently. Higher-delta (deeper in-the-money) options track the stock more closely and cost more but decay less; lower-delta (out-of-the-money) options are cheaper and more explosive but expire worthless more often. The right delta depends on how directional and how leveraged you want to be.
Why is put delta negative?
A put gains value when the stock falls. Delta is defined as the price change per $1 rise in the stock, which makes a put's delta negative — the stock rising costs the put value.
Does delta change over time?
Yes. Delta moves as the stock moves (that sensitivity is gamma), and it drifts as expiration approaches — in-the-money options push toward 1.0 and out-of-the-money options toward 0 as time runs out, which the trace above shows day by day.