Same-day SPY contracts by strike: the ten busiest, July 6, 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-13, from What Is Gamma Exposure (GEX)? Dealer Hedging.
| strike | call_contracts_k | put_contracts_k | total_contracts_k |
|---|---|---|---|
| 751 | 1082.3 | 735.2 | 1817.5 |
| 750 | 739.6 | 986.4 | 1725.9 |
| 752 | 911 | 323.4 | 1234.4 |
| 749 | 332 | 627.4 | 959.4 |
| 753 | 587.8 | 74.8 | 662.6 |
| 748 | 107 | 457.4 | 564.4 |
| 747 | 60.2 | 293.3 | 353.5 |
| 746 | 24 | 160.8 | 184.8 |
| 754 | 163.3 | 13.2 | 176.6 |
| 745 | 10.1 | 149.5 | 159.6 |
- Rows × columns
- 10 × 4
- 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 |
|---|---|---|---|
strike |
text | 10 distinct values (745, 746, 747…) | |
call_contracts_k |
number | 10.1 to 1,082.3 | count |
put_contracts_k |
number | 13.2 to 986.4 | count |
total_contracts_k |
number | 159.6 to 1,817.5 | 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 strike_label AS strike,
round(sumIf(contracts, opt_type = 'C') / 1e3, 1) AS call_contracts_k,
round(sumIf(contracts, opt_type = 'P') / 1e3, 1) AS put_contracts_k,
round(sum(contracts) / 1e3, 1) AS total_contracts_k
FROM (
SELECT substring(ticker, length(ticker) - 8, 1) AS opt_type,
toUInt32OrZero(substring(ticker, length(ticker) - 7, 8)) AS strike_thousandths,
toString(intDiv(strike_thousandths, 1000)) AS strike_label,
sum(toFloat64(volume)) AS contracts
FROM global_markets.options_minute_aggs
WHERE window_start >= toDateTime('2026-07-06 08:00:00')
AND window_start < toDateTime('2026-07-07 04:00:00')
AND startsWith(ticker, 'O:SPY260706')
GROUP BY ticker, opt_type, strike_thousandths, strike_label
)
GROUP BY strike_label
ORDER BY sum(contracts) DESC
LIMIT 10
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 analysisWhat Is Gamma Exposure (GEX)? Dealer Hedging
July 6, 2026: top roots by same-day-expiry options volume
ranking 8×3
→
July 6, 2026: whole-tape options volume by days to expiry
ranking 5×3
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
SPY contracts traded by strike, July 17 2026 expiry
ranking 22×3
→
Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks
ranking 20×3
→
How far AAPL moves inside a single minute, by New York hour
ranking 12×4
→
See all 2,170 queries →