What Is Gamma Exposure (GEX)? Dealer Hedging
July 6, 2026: top roots by same-day-expiry options volumeranking ·
2026-08-13 · 8×3
Same-day SPY contracts by strike: the ten busiest, July 6, 2026ranking ·
2026-08-13 · 10×4
July 6, 2026: whole-tape options volume by days to expiryranking ·
2026-08-13 · 5×3
July 6, 2026: top roots by same-day-expiry options volume
July 6, 2026: top roots by same-day-expiry options volume
| underlying | zero_dte_contracts_mm | pct_of_zero_dte_volume |
|---|---|---|
| SPY | 8.49 | 36.1 |
| QQQ | 4.98 | 21.2 |
| TSLA | 2.81 | 11.9 |
| SPXW | 2.67 | 11.3 |
| NVDA | 1.12 | 4.8 |
| AAPL | 0.9 | 3.8 |
| IWM | 0.81 | 3.5 |
| META | 0.36 | 1.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
More from this analysisWhat Is Gamma Exposure (GEX)? Dealer Hedging
Same-day SPY contracts by strike: the ten busiest, July 6, 2026
ranking 10×4
→
July 6, 2026: whole-tape options volume by days to expiry
ranking 5×3
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
SPY contracts traded by strike, July 17 2026 expiry
ranking 22×3
→
See all 2,173 queries →