STRASMORE/EXPLORE 2,170 QUERIES

Options volume by days to expiration: every US option traded 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 ranking 6×3read in context →
Options volume by days to expiration: every US option traded July 8, 2026 — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
bucketcontracts_mmpct_of_volume
0 DTE (expires today)24.3438.9
1 DTE2.764.4
2-7 DTE11.618.5
8-30 DTE12.1819.5
31-90 DTE6.6410.6
91+ DTE5.078.1
Rows × columns
6 × 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 Options volume by days to expiration: every US option traded July 8, 2026, derived from the stored result.
ColumnTypeRangeNotes
bucket text 6 distinct values (0 DTE (expires today), 1 DTE, 2-7 DTE…)
contracts_mm number 2.76 to 24.34 count
pct_of_volume number 4.4 to 38.9 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 multiIf(dte = 0, '0 DTE (expires today)',
               dte = 1, '1 DTE',
               dte <= 7, '2-7 DTE',
               dte <= 30, '8-30 DTE',
               dte <= 90, '31-90 DTE',
               '91+ DTE') AS bucket,
       round(sum(vol) / 1e6, 2) AS contracts_mm,
       round(100.0 * sum(vol) / sum(sum(vol)) OVER (), 1) AS pct_of_volume
FROM (
    SELECT toFloat64(volume) AS vol,
           dateDiff('day',
                    toDate(toTimeZone(window_start, 'America/New_York')),
                    toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6)))) AS dte
    FROM global_markets.options_minute_aggs
    WHERE window_start >= '2026-07-08 04:00:00'
      AND window_start < '2026-07-09 04:00:00'
)
WHERE dte >= 0
GROUP BY bucket
ORDER BY min(dte)

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
0DTE's rise: same-day share of SPY option volume, June 8-12 of each year ranking 7×4 The price of time: at-the-money SPY call price by DTE, midday July 8, 2026 series 11×3 DTE menus compared: expirations traded and 0DTE share by underlying, July 8, 2026 table 6×6 DTE, worked on real contracts: SPY's most-traded option in each DTE band, July 8, 2026 table 6×5 The front of the curve: share of July 8, 2026 volume within a week of expiry scalar 1×3 Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks ranking 20×3 See all 2,170 queries →