Distinct expirations listed for the rest of July 2026: eight US names
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-03, from DAX Daily Options: How Eurex 0DTE Works.
| underlying_symbol | expirations_listed | traded_millions |
|---|---|---|
| SPY | 11 | 3.66 |
| QQQ | 11 | 2.21 |
| IWM | 11 | 0.55 |
| NVDA | 7 | 1.98 |
| AAPL | 7 | 1.44 |
| MSFT | 6 | 0.59 |
| KO | 3 | 0.03 |
| XLU | 3 | 0.01 |
- Rows × columns
- 8 × 3
- 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 |
|---|---|---|---|
underlying_symbol |
text | 8 distinct values (AAPL, IWM, KO…) | |
expirations_listed |
number | 3 to 11 | |
traded_millions |
number | 0.01 to 3.66 |
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_symbol,
uniqExact(expiration_date) AS expirations_listed,
round(sum(volume) / 1e6, 2) AS traded_millions
FROM global_markets.options_greeks
WHERE date = toDate('2026-07-16')
AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'AAPL', 'NVDA', 'MSFT', 'KO', 'XLU')
AND expiration_date >= toDate('2026-07-16')
AND expiration_date <= toDate('2026-07-31')
GROUP BY underlying_symbol
ORDER BY expirations_listed DESC, traded_millions 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 analysisDAX Daily Options: How Eurex 0DTE Works
Median implied volatility by days to expiry: near-the-money SPY contracts, 16 July 2026
ranking 5×4
→
Same-day expiries as a share of SPY option volume: every session, July 2026
series 21×4
→
Expirations on the SPY option board: every listed expiry over 30 days, 16 July 2026
series 13×4
→
Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks
ranking 20×3
→
Time value left in deep in-the-money SPY calls, against the dividend at stake
ranking 16×4
→
SPY near-the-money implied volatility by days to expiry
ranking 8×2
→
See all 2,170 queries →