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

2,173 answered market questions

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

What Are Call Options?
One SPY $740 call vs SPY, indexed to 100 on May 1 (expired Jun 18 2026)series · 2026-07-16 · 31×3Preview: a 16-point series, ending higher. The $740 call split into intrinsic and time value, five key sessionsseries · 2026-07-16 · 5×4Preview: a 5-point series, ending lower. SPY vs its $740 call, May 1 to June 2 (the SPY peak)ranking · 2026-07-16 · 2×4Preview: 2 ranked values, largest first.
One SPY $740 call vs SPY, indexed to 100 on May 1 (expired Jun 18 2026)

One SPY $740 call vs SPY, indexed to 100 on May 1 (expired Jun 18 2026)

most recentas of series 31×3read in context →
One SPY $740 call vs SPY, indexed to 100 on May 1 (expired Jun 18 2026) — 31 rows by 3 columns, computed from US exchange, SIP and OPRA data.
datespy_indexedcall_indexed
2026-05-01100100
2026-05-0410083
2026-05-05101113
2026-05-06102184
2026-05-07102163
2026-05-08102201
2026-05-11103216
2026-05-12102195
2026-05-13103239
2026-05-14104284
2026-05-15102190
2026-05-18103180
2026-05-19102143
2026-05-20103194
2026-05-21103201
2026-05-22103216
2026-05-26104255
2026-05-27104247
2026-05-28105287
2026-05-29105295
2026-06-01105312
2026-06-02106325
2026-06-03104255
2026-06-04105277
2026-06-05102101
2026-06-08103109
2026-06-0910293
2026-06-1010044
2026-06-1110397
2026-06-1210398
2026-06-15105213
the exact SQL behind every number
WITH d AS (
  SELECT date, avg(underlying_close) AS spy, avg(option_close) AS call
  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
)
SELECT date,
       round(100 * spy / first_value(spy) OVER (ORDER BY date), 0) AS spy_indexed,
       round(100 * call / first_value(call) OVER (ORDER BY date), 0) AS call_indexed
FROM d
ORDER BY date
$