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

How to Read a Futures Symbol (ESZ6, CLF27)
Volume around one quarterly expiry: SPY June 19 vs September 18, 2026series · 2026-08-09 · 38×3Preview: a 16-point series, ending higher. Delivery years live at the same time on one option calendar (SPY, July 2026)ranking · 2026-08-09 · 3×4Preview: 3 ranked values, smallest first. Where long-dated option volume lands, by expiry month coderanking · 2026-08-09 · 11×3Preview: 11 ranked values, largest first.
Volume around one quarterly expiry: SPY June 19 vs September 18, 2026

Volume around one quarterly expiry: SPY June 19 vs September 18, 2026

most recentas of series 38×3read in context →
Volume around one quarterly expiry: SPY June 19 vs September 18, 2026 — 38 rows by 3 columns, computed from US exchange, SIP and OPRA data.
session_datejun_19_expiry_millionssep_18_expiry_millions
2026-05-1500.05
2026-05-1800.04
2026-05-1900.06
2026-05-2000.02
2026-05-2100.02
2026-05-2200.04
2026-05-2600.03
2026-05-2700.04
2026-05-2800.07
2026-05-2900.04
2026-06-0100.06
2026-06-0200.04
2026-06-0300.05
2026-06-0400.02
2026-06-0500.06
2026-06-0800.03
2026-06-0900.06
2026-06-1000.04
2026-06-1100.06
2026-06-1200.04
2026-06-1500.05
2026-06-1600.48
2026-06-1700.09
2026-06-1800.05
2026-06-2200.04
2026-06-2300.04
2026-06-2400.05
2026-06-2500.06
2026-06-2600.04
2026-06-2900.06
2026-06-3000.45
2026-07-0100.09
2026-07-0200.07
2026-07-0600.04
2026-07-0700.06
2026-07-0800.13
2026-07-0900.04
2026-07-1000.05
the exact SQL behind every number
SELECT
    toString(date)                                                            AS session_date,
    round(toFloat64(sumIf(volume, expiration_date = '2026-06-19')) / 1e6, 2)  AS jun_19_expiry_millions,
    round(toFloat64(sumIf(volume, expiration_date = '2026-09-18')) / 1e6, 2)  AS sep_18_expiry_millions
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
  AND date >= '2026-05-15'
  AND date <= '2026-07-10'
  AND volume > 0
  AND iv_converged = 1
GROUP BY date
ORDER BY date
$