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 Is Gamma Exposure (GEX)? Dealer Hedging
July 6, 2026: top roots by same-day-expiry options volumeranking · 2026-08-13 · 8×3Preview: 8 ranked values, largest first. Same-day SPY contracts by strike: the ten busiest, July 6, 2026ranking · 2026-08-13 · 10×4Preview: 10 ranked values, largest first. July 6, 2026: whole-tape options volume by days to expiryranking · 2026-08-13 · 5×3Preview: 5 ranked values, largest first.
July 6, 2026: top roots by same-day-expiry options volume

July 6, 2026: top roots by same-day-expiry options volume

most recentas of ranking 8×3read in context →
July 6, 2026: top roots by same-day-expiry options volume — 8 rows by 3 columns, computed from US exchange, SIP and OPRA data.
underlyingzero_dte_contracts_mmpct_of_zero_dte_volume
SPY8.4936.1
QQQ4.9821.2
TSLA2.8111.9
SPXW2.6711.3
NVDA1.124.8
AAPL0.93.8
IWM0.813.5
META0.361.5
the exact SQL behind every number
SELECT root AS underlying,
       round(sum(volume) / 1e6, 2) AS zero_dte_contracts_mm,
       round(100.0 * sum(volume) / sum(sum(volume)) OVER (), 1) AS pct_of_zero_dte_volume
FROM (
    SELECT substring(ticker, 3, length(ticker) - 17) AS root,
           toFloat64(volume) AS volume
    FROM global_markets.options_minute_aggs
    WHERE window_start >= toDateTime('2026-07-06 08:00:00')
      AND window_start <  toDateTime('2026-07-07 04:00:00')
      AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2026-07-06')
      AND toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6))) = toDate(toTimeZone(window_start, 'America/New_York'))
)
WHERE root != 'SPCX'
GROUP BY root
ORDER BY sum(volume) DESC
LIMIT 8
$