STRASMORE/EXPLORE 2,170 QUERIES

SPY vs the LEAPS call, both indexed to 100 in early June 2025

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-07-16, from Deep ITM LEAPS: Stock Replacement.

as of series 33×3read in context →
SPY vs the LEAPS call, both indexed to 100 in early June 2025 — 33 rows by 3 columns, computed from US exchange, SIP and OPRA data.
weekspy_indexleaps_index
2025-06-02100100
2025-06-09100.8106.4
2025-06-16100.3102.2
2025-06-23102.3117.1
2025-06-30104.2140.1
2025-07-07104.6143.5
2025-07-14105147.7
2025-07-21106.4159.6
2025-07-28106.3157.9
2025-08-04106.3153.2
2025-08-11107.9173.4
2025-08-18107.6166.1
2025-08-25108.4176.3
2025-09-01108.4170.9
2025-09-08109.8190.2
2025-09-15111.2209.6
2025-09-22111.3214.5
2025-09-29112.1223.7
2025-10-06112.2223.4
2025-10-13111.4211.7
2025-10-20112.9229.6
2025-10-27115.1259.6
2025-11-03113.6233.5
2025-11-10113.8236.2
2025-11-17110.9193.2
2025-11-24113.4224.4
2025-12-01114.6241.1
2025-12-08115247.2
2025-12-15114.2233.1
2025-12-22115.6253.5
2025-12-29115.2246.2
2026-01-05115.9254.5
2026-01-12116.6265.8
Rows × columns
33 × 3
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for SPY vs the LEAPS call, both indexed to 100 in early June 2025, derived from the stored result.
ColumnTypeRangeNotes
week date 2025-06-02 to 2026-01-12
spy_index number 100 to 116.6
leaps_index number 100 to 265.8

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT week,
       round(spy / first_value(spy) OVER w * 100, 1) AS spy_index,
       round(leaps / first_value(leaps) OVER w * 100, 1) AS leaps_index
FROM (
  SELECT toStartOfWeek(date, 1) AS week,
         avg(underlying_close) AS spy,
         avg(option_close) AS leaps
  FROM global_markets.options_greeks
  WHERE ticker = 'O:SPY260116C00600000' AND date BETWEEN '2025-06-02' AND '2026-01-13' AND implied_volatility > 0.02
  GROUP BY week
)
WINDOW w AS (ORDER BY week)
ORDER BY week

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisDeep ITM LEAPS: Stock Replacement
The LEAPS call's delta climbing toward 1 as it goes deep in the money series 33×2 Time value as a share of premium, and daily theta, month by month series 8×3 One deep-ITM LEAPS vs 100 shares: cost, leverage, and delta series 3×7 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 SPY, the call's delta, and its implied volatility at four life stages series 4×4 Theta (daily decay) against days to expiry, across the call's life series 4×3 See all 2,170 queries →