DTE, worked on real contracts: SPY's most-traded option in each DTE band, 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.
| option_ticker | traded_on | expires_on | calendar_dte | contracts_traded |
|---|---|---|---|---|
| O:SPY260708C00745000 | July 8, 2026 | July 8, 2026 | 0 | 677,981 |
| O:SPY260709P00740000 | July 8, 2026 | July 9, 2026 | 1 | 93,266 |
| O:SPY260710P00740000 | July 8, 2026 | July 10, 2026 | 2 | 56,299 |
| O:SPY260717P00720000 | July 8, 2026 | July 17, 2026 | 9 | 35,792 |
| O:SPY260918P00650000 | July 8, 2026 | September 18, 2026 | 72 | 42,388 |
| O:SPY261016P00425000 | July 8, 2026 | October 16, 2026 | 100 | 4,553 |
- Rows × columns
- 6 × 5
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
option_ticker |
text | 6 distinct values | |
traded_on |
text | 1 distinct value (July 8, 2026) | |
expires_on |
text | 6 distinct values | |
calendar_dte |
number | 0 to 100 | |
contracts_traded |
text | 6 distinct values (35,792, 4,553, 42,388…) |
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 argMax(contract, (vol, contract)) AS option_ticker,
argMax(traded_on, (vol, contract)) AS traded_on,
argMax(expires_on, (vol, contract)) AS expires_on,
argMax(dte, (vol, contract)) AS calendar_dte,
multiIf(max(vol) >= 1000000,
concat(toString(intDiv(toUInt64(max(vol)), 1000000)), ',',
leftPad(toString(intDiv(toUInt64(max(vol)), 1000) % 1000), 3, '0'), ',',
leftPad(toString(toUInt64(max(vol)) % 1000), 3, '0')),
max(vol) >= 1000,
concat(toString(intDiv(toUInt64(max(vol)), 1000)), ',',
leftPad(toString(toUInt64(max(vol)) % 1000), 3, '0')),
toString(toUInt64(max(vol)))) AS contracts_traded
FROM (
SELECT ticker AS contract,
replaceRegexpAll(formatDateTime(toDate(toTimeZone(window_start, 'America/New_York')), '%M %e, %Y'), ' ', ' ') AS traded_on,
replaceRegexpAll(formatDateTime(toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6))), '%M %e, %Y'), ' ', ' ') AS expires_on,
dateDiff('day',
toDate(toTimeZone(window_start, 'America/New_York')),
toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6)))) AS dte,
multiIf(dte = 0, '0 DTE', dte = 1, '1 DTE', dte <= 7, '2-7 DTE',
dte <= 30, '8-30 DTE', dte <= 90, '31-90 DTE', '91+ DTE') AS bucket,
sum(volume) AS vol
FROM global_markets.options_minute_aggs
WHERE ticker LIKE 'O:SPY2%'
AND window_start >= '2026-07-08 04:00:00'
AND window_start < '2026-07-09 04:00:00'
GROUP BY contract, traded_on, expires_on, dte, bucket
HAVING 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
DTE menus compared: expirations traded and 0DTE share by underlying, July 8, 2026
table 6×6
→
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 →