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

Deep ITM LEAPS: Stock Replacement
One deep-ITM LEAPS vs 100 shares: cost, leverage, and deltaseries · 2026-07-16 · 3×7Preview: a 3-point series, ending higher. SPY vs the LEAPS call, both indexed to 100 in early June 2025series · 2026-07-16 · 33×3Preview: a 16-point series, ending higher. The LEAPS call's delta climbing toward 1 as it goes deep in the moneyseries · 2026-07-16 · 33×2Preview: a 16-point series, ending higher. Time value as a share of premium, and daily theta, month by monthseries · 2026-07-16 · 8×3Preview: a 8-point series, ending lower.
One deep-ITM LEAPS vs 100 shares: cost, leverage, and delta

One deep-ITM LEAPS vs 100 shares: cost, leverage, and delta

most recentas of series 3×7read in context →
One deep-ITM LEAPS vs 100 shares: cost, leverage, and delta — 3 rows by 7 columns, computed from US exchange, SIP and OPRA data.
datespy_closeshares_costleaps_priceleaps_costleverage_xdelta
2025-07-01617.936179348.5485012.70.689
2025-10-09671.966719682.0382038.20.897
2025-12-01679.986799884.49844980.938
the exact SQL behind every number
SELECT date,
       round(avg(underlying_close), 2) AS spy_close,
       round(avg(underlying_close) * 100, 0) AS shares_cost,
       round(avg(option_close), 2) AS leaps_price,
       round(avg(option_close) * 100, 0) AS leaps_cost,
       round(avg(underlying_close) / avg(option_close), 1) AS leverage_x,
       round(avg(delta), 3) AS delta
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260116C00600000' AND date IN ('2025-07-01', '2025-10-09', '2025-12-01') AND implied_volatility > 0.02
GROUP BY date ORDER BY date
$