How Option Greeks Dey Change With Time
One SPY call and put for $740 strike, same June 18, 2026 expiry, dey trace mirror-image delta, gamma, theta and vega from May 1 reach week before last day.
Option greeks no be fixed numbers. Dem dey reprice every session as inputs dey move: the stock, the calendar, and volatility. The clearest way to see am na to pin two real contracts and watch dem dey age side by side. Here we get one SPY call and put at the same $740 strike, both expiring June 18, 2026, traced from May 1 go reach the week before expiry. Same underlying, same strike, same expiry, opposite direction. Their greeks dey come out like near mirror images.
First, the stock wey the two options dey track. SPY open the window for $720, climb reach $759.63 by Jun 2, drop to $722.88 on Jun 10, then rally back to $753.91 by Jun 15.
The exact SQL behind every number
SELECT date,
formatDateTime(date, '%b %e') AS date_label,
round(avg(underlying_close), 2) AS spy_price
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-15' AND implied_volatility > 0.02
GROUP BY date
ORDER BY dateSame strike, mirror-image prices
Call start cheap, put start rich: for May 1, call dey $7.22 but put dey $23.05, and SPY sit below the same $740 strike. As the stock climb pass the strike enter early June, the two cross: when SPY reach Jun 2 peak, call don hit $23.5 and put don drop to $2.79. When SPY fall on Jun 5, the pair flip again. By the last session, call worth $15.41 and put just $1.16.
The exact SQL behind every number
SELECT c.date AS date,
formatDateTime(c.date, '%b %e') AS date_label,
round(avg(c.option_close), 2) AS call_price,
round(avg(p.option_close), 2) AS put_price
FROM global_markets.options_greeks c
INNER JOIN global_markets.options_greeks p ON c.date = p.date
WHERE c.ticker = 'O:SPY260618C00740000' AND p.ticker = 'O:SPY260618P00740000'
AND c.date BETWEEN '2026-05-01' AND '2026-06-15'
AND c.implied_volatility > 0.02 AND p.implied_volatility > 0.02
GROUP BY c.date
ORDER BY dateEvery number wey dey below na one of the five greeks wey dey read these two price paths. If you want the full meaning, start with how option greeks take work.
Di call greeks across im life
The exact SQL behind every number
SELECT date,
formatDateTime(date, '%b %e') AS date_label,
round(avg(delta), 3) AS delta,
round(avg(gamma), 4) AS gamma,
round(avg(theta), 3) AS theta,
round(avg(vega), 3) AS vega,
round(avg(implied_volatility) * 100, 1) AS iv_pct
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-15' AND implied_volatility > 0.02
GROUP BY date
ORDER BY dateDelta na how much di option dey move per $1 wey di stock move, and e near be di chance say e go end in di money. Di call open at delta of 0.327 with SPY under di strike, dey behave like third of one share. As SPY pass $740, delta climb near 1: e show 0.809 at Jun 2 peak and 0.837 on di final session. Full mechanics dey inside wetin option delta be.
Gamma na how fast delta imself dey change, and e dey highest when di stock dey right on top di strike. Di call gamma open at 0.0105 and climb reach 0.0281 on Jun 12, with SPY dey hover near $740 for mid-June. See option gamma.
Theta na di value wey di option dey shed every day as expiry dey come near, and that bleed dey speed up for di final week. Di call theta move from -0.153 on May 1 reach -0.664 on Jun 15, one much steeper daily drain near June 18. More inside option theta.
Vega na how much di option dey move per one-point change for implied volatility. Vega dey shrink as expiry dey come, but e tick up across di Jun 5 selloff: 0.434 at di peak, then 0.548 two sessions later, as di call IV dey climb from 13.2% at di start reach 21.2% at Jun 10 low. Read option vega for di full picture.
Di put greeks: di mirror
The exact SQL behind every number
SELECT date,
formatDateTime(date, '%b %e') AS date_label,
round(avg(delta), 3) AS delta,
round(avg(gamma), 4) AS gamma,
round(avg(theta), 3) AS theta,
round(avg(vega), 3) AS vega,
round(avg(implied_volatility) * 100, 1) AS iv_pct
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618P00740000' AND date BETWEEN '2026-05-01' AND '2026-06-15' AND implied_volatility > 0.02
GROUP BY date
ORDER BY datePut di two panels side by side and di symmetry go clean. One put delta na negative: e dey gain as di stock dey fall. Di put open wit delta of -0.681 and run go -1 as SPY sink, hit -0.796 for di Jun 10 trough. E later relax to -0.155 once SPY rally back over di strike and di put drift comot di money.
Gamma na di one greek wey di call and put share — no be mirror: both dey read di same curvature for di same strike. Di put gamma open for 0.0109 and peak for 0.023 on Jun 12, di same near-strike session wey max out di call gamma. Theta still dey bleed di put too, steepen from -0.07 on May 1 to -0.552 for di end. And vega rise for di same selloff: 0.44 for di Jun 2 high, then 0.55 on Jun 5 as di put IV jump from 12.6% to 21.8% on Jun 11.
Why di greeks dem never dey static
Each greek na slope, and slope dey change as you dey waka along di curve. Move di stock and delta go change (dat movement na gamma). Turn di calendar page and theta go grind small value comot everyday, faster as di expiration date dey approach. Shift di fear wey dem don price inside options and vega go reposition di whole surface. Di two contracts for here start wit different price and delta weeks apart, cross two times as SPY swing, and converge toward dia expiry values from opposite ends. Nothing about any of di five numbers constant for even one session.
Na dat one be di practical lesson. Greek wey you read on Monday na snapshot, no be setting. Position wey be delta-neutral for open fit carry real directional risk by close once gamma don do im work, and vega bet wey dem place for calm fit swing hard when selloff lift implied volatility across board.
FAQ
Whether call and put greeks dey move for opposite direction?
Mostly. Delta na the clearest mirror: call delta dey run from 0 go +1 as the stock rise, while put delta dey run from 0 go -1 as the stock fall. Theta and vega dey point the same way for both (both dey lose time value, both dey gain when volatility rise), and gamma actually shared: call and put on the same strike and expiry carry the same gamma.
Why option delta dey change every day?
Delta na the odds-weighted sensitivity to the stock, and those odds dey move as the stock dey move. That rate of change na gamma. For this trace the call delta climb from 0.327 to 0.837 as SPY work above the $740 strike, without anybody re-quote am: the delta reprice itself every session the stock move.
Which greek dey change fastest near expiration?
Theta and gamma both intensify into the final week. Theta daily bleed dey steepen as fewer days remain to spread the decay over, and gamma spike when the stock sit near the strike close to expiry. For this contract the call theta waka from -0.153 to -0.664 across im life.
Wetin dey make vega rise even as option dey old?
Vega dey fall with time if everything else remain equal, yet everything else no dey equal like that. When implied volatility jump, vega on the surviving days fit tick back up. Both contracts for here see vega rise across the early-June selloff even as expiry dey draw nearer, tracking the spike for their implied volatility.
You fit pull this exact trace, or swap any ticker and strike enter, for the Strasmore terminal and watch the greeks move by yourself.