STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

What Are LEAPS? Long-Dated Options
SPY, the call's delta, and its implied volatility at four life stagesseries · 2026-07-16 · 4×4Preview: a 4-point series, ending higher. One SPY $600 LEAPS call's price over two years (expired Jan 16 2026)series · 2026-07-16 · 470×2Preview: a 16-point series, ending higher. Theta (daily decay) against days to expiry, across the call's lifeseries · 2026-07-16 · 4×3Preview: a 4-point series, ending lower.
SPY, the call's delta, and its implied volatility at four life stages

SPY, the call's delta, and its implied volatility at four life stages

most recentas of series 4×4read in context →
SPY, the call's delta, and its implied volatility at four life stages — 4 rows by 4 columns, computed from US exchange, SIP and OPRA data.
datespydeltaiv_pct
2024-01-02472.670.23110.9
2024-12-09604.30.66815
2025-10-09671.960.89719.7
2026-01-14689.620.97598.1
the exact SQL behind every number
SELECT date,
       round(avg(underlying_close), 2) AS spy,
       round(avg(delta), 3) AS delta,
       round(avg(implied_volatility) * 100, 1) AS iv_pct
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260116C00600000' AND date IN ('2024-01-02', '2024-12-09', '2025-10-09', '2026-01-14') AND implied_volatility > 0.02
GROUP BY date ORDER BY date
$