STRASMORE/EXPLORE 2,170 QUERIES

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

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-08-13, from What Is Gamma Exposure (GEX)? Dealer Hedging.

as 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
Rows × columns
8 × 3
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 July 6, 2026: top roots by same-day-expiry options volume, derived from the stored result.
ColumnTypeRangeNotes
underlying text 8 distinct values (AAPL, IWM, META…)
zero_dte_contracts_mm number 0.36 to 8.49 count
pct_of_zero_dte_volume number 1.5 to 36.1 percent

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 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

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 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 Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks ranking 20×3 How far AAPL moves inside a single minute, by New York hour ranking 12×4 See all 2,170 queries →