Where long-dated option volume lands, by expiry month code
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-09, from How to Read a Futures Symbol (ESZ6, CLF27).
| code_bucket | contracts_millions | expiry_dates |
|---|---|---|
| Z (Dec) | 13.5 | 4 |
| F (Jan) | 11.22 | 2 |
| U (Sep) | 11.17 | 3 |
| M (Jun) | 9.23 | 5 |
| H (Mar) | 3.85 | 3 |
| Q (Aug) | 2.57 | 2 |
| V (Oct) | 2.56 | 2 |
| X (Nov) | 1.62 | 2 |
| N (Jul) | 1.33 | 2 |
| K (May) | 0.36 | 2 |
| G (Feb) | 0.05 | 1 |
- Rows × columns
- 11 × 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 |
|---|---|---|---|
code_bucket |
text | 11 distinct values (F (Jan), G (Feb), H (Mar)…) | |
contracts_millions |
number | 0.05 to 13.5 | count |
expiry_dates |
number | 1 to 5 |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
concat(
arrayElement(['F','G','H','J','K','M','N','Q','U','V','X','Z'], toMonth(expiration_date)),
' (',
arrayElement(['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'], toMonth(expiration_date)),
')'
) AS code_bucket,
round(toFloat64(sum(volume)) / 1e6, 2) AS contracts_millions,
countDistinct(expiration_date) AS expiry_dates
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('SPY', 'QQQ', 'AAPL', 'NVDA')
AND date >= '2026-01-02'
AND date < '2026-07-01'
AND days_to_expiry > 120
AND volume > 0
AND iv_converged = 1
GROUP BY toMonth(expiration_date)
ORDER BY contracts_millions DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.