Average daily options volume: Section 1256 names against equity options
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-22, from Why Index Options Are Taxed 60/40: Section 1256.
| symbol | tax_treatment | avg_daily_contracts_k |
|---|---|---|
| SPY | Ordinary equity option | 3834.8 |
| QQQ | Ordinary equity option | 2349.7 |
| IWM | Ordinary equity option | 941.9 |
| AAPL | Ordinary equity option | 833.5 |
- Rows × columns
- 4 × 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 |
|---|---|---|---|
symbol |
text | 4 distinct values (AAPL, IWM, QQQ…) | |
tax_treatment |
text | 1 distinct value (Ordinary equity option) | |
avg_daily_contracts_k |
number | 833.5 to 3,834.8 | 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
replaceOne(underlying_symbol, 'I:', '') AS symbol,
if(symbol IN ('SPX', 'XSP', 'NDX', 'RUT', 'VIX'),
'Section 1256 (60/40)',
'Ordinary equity option') AS tax_treatment,
round(sum(volume) / countDistinct(date) / 1000, 1) AS avg_daily_contracts_k
FROM global_markets.options_greeks
WHERE date >= today() - 90
AND symbol IN ('SPX', 'XSP', 'NDX', 'RUT', 'VIX', 'SPY', 'QQQ', 'IWM', 'AAPL')
AND volume > 0
GROUP BY symbol
ORDER BY avg_daily_contracts_k 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 analysisWhy Index Options Are Taxed 60/40: Section 1256
Share of contract volume by days to expiry, SPX and SPY
ranking 5×3
→
Time value left in deep in-the-money SPY calls, against the dividend at stake
ranking 16×4
→
SPY option volume by days to expiry, trailing six weeks
ranking 5×3
→
What one contract controls: SPX, SPY and XSP
ranking 3×4
→
How close SPY closes to the nearest whole-dollar strike on monthly expirations
series 13×4
→
SPY: widest open print to close print gaps on monthly expiration Fridays since 2021
ranking 12×4
→
See all 2,170 queries →