STRASMORE/EXPLORE 2,170 QUERIES

DTE menus compared: expirations traded and 0DTE share by underlying, July 8, 2026

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-11, from DTE Meaning in Options: Days to Expiration.

as of table 6×6read in context →
DTE menus compared: expirations traded and 0DTE share by underlying, July 8, 2026 — 6 rows by 6 columns, computed from US exchange, SIP and OPRA data.
underlyingexpiries_tradedshortest_dtelongest_dtepct_0dtecontracts_mm
SPY35089170.111.96
QQQ33089171.57.35
TSLA230891622.62
IWM33089146.61.89
AAPL25089161.81.51
KO16256200.04
Rows × columns
6 × 6
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 DTE menus compared: expirations traded and 0DTE share by underlying, July 8, 2026, derived from the stored result.
ColumnTypeRangeNotes
underlying text 6 distinct values (AAPL, IWM, KO…)
expiries_traded number 16 to 35
shortest_dte number 0 to 2
longest_dte number 562 to 891
pct_0dte number 0 to 71.5 percent
contracts_mm number 0.04 to 11.96 count

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 underlying,
       uniqExact(expiry) AS expiries_traded,
       min(dte) AS shortest_dte,
       max(dte) AS longest_dte,
       round(100.0 * sumIf(vol, dte = 0) / sum(vol), 1) AS pct_0dte,
       round(sum(vol) / 1e6, 2) AS contracts_mm
FROM (
    SELECT splitByChar(':', ticker)[2] AS raw,
           substring(raw, 1, length(raw) - 15) AS underlying,
           toFloat64(volume) AS vol,
           toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6))) AS expiry,
           dateDiff('day', toDate(toTimeZone(window_start, 'America/New_York')), expiry) AS dte
    FROM global_markets.options_minute_aggs
    WHERE (ticker LIKE 'O:SPY2%' OR ticker LIKE 'O:QQQ2%' OR ticker LIKE 'O:IWM2%'
           OR ticker LIKE 'O:AAPL2%' OR ticker LIKE 'O:TSLA2%' OR ticker LIKE 'O:KO2%')
      AND window_start >= '2026-07-08 04:00:00'
      AND window_start < '2026-07-09 04:00:00'
)
WHERE dte >= 0
GROUP BY underlying
ORDER BY contracts_mm DESC

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 analysisDTE Meaning in Options: Days to Expiration
DTE, worked on real contracts: SPY's most-traded option in each DTE band, July 8, 2026 table 6×5 The price of time: at-the-money SPY call price by DTE, midday July 8, 2026 series 11×3 0DTE's rise: same-day share of SPY option volume, June 8-12 of each year ranking 7×4 Options volume by days to expiration: every US option traded July 8, 2026 ranking 6×3 The front of the curve: share of July 8, 2026 volume within a week of expiry scalar 1×3 Who owns Wednesday: roots by distinct Wednesday-dated expirations, July 6-9, 2026 tape table 8×5 See all 2,170 queries →