How July 6's same-day SPY contracts finished: out of the money vs. in the money
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 What Is 0DTE? Zero Days to Expiry Options.
| at_the_bell | contracts | call_contracts_mm | put_contracts_mm | pct_of_spy_zero_dte_volume |
|---|---|---|---|---|
| Out of the money at the close (expired at zero) | 86 | 1.78 | 3.91 | 66.9 |
| In the money at the close (settled with value) | 163 | 2.38 | 0.42 | 33.1 |
- Rows × columns
- 2 × 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 |
|---|---|---|---|
at_the_bell |
text | 2 distinct values | |
contracts |
number | 86 to 163 | count |
call_contracts_mm |
number | 1.78 to 2.38 | count |
put_contracts_mm |
number | 0.42 to 3.91 | count |
pct_of_spy_zero_dte_volume |
number | 33.1 to 66.9 | percent |
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
WITH (
SELECT round(argMax(close, window_start), 2)
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= toDateTime('2026-07-06 09:30:00', 'America/New_York')
AND window_start < toDateTime('2026-07-06 16:01:00', 'America/New_York')
) AS spy_close
SELECT if(expired_at_zero, 'Out of the money at the close (expired at zero)',
'In the money at the close (settled with value)') AS at_the_bell,
count() AS contracts,
round(sumIf(vol, opt_type = 'C') / 1e6, 2) AS call_contracts_mm,
round(sumIf(vol, opt_type = 'P') / 1e6, 2) AS put_contracts_mm,
round(100.0 * sum(vol) / sum(sum(vol)) OVER (), 1) AS pct_of_spy_zero_dte_volume
FROM (
SELECT substring(ticker, length(ticker) - 8, 1) AS opt_type,
toFloat64(substring(ticker, length(ticker) - 7, 8)) / 1000 AS strike,
(opt_type = 'C' AND strike > spy_close) OR (opt_type = 'P' AND strike < spy_close) AS expired_at_zero,
sum(toFloat64(volume)) AS vol
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, expired_at_zero
)
GROUP BY expired_at_zero
ORDER BY expired_at_zero 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 analysisWhat Is 0DTE? Zero Days to Expiry Options
One 0DTE contract, all day: SPY's busiest same-day call and put, July 6, 2026
series 14×4
→
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
→
July 6, 2026: SPY's two busiest same-day contracts
ranking 2×3
→
The receipt: July 6, 2026 session completeness and OCC parse coverage
scalar 1×6
→
June 2026: whole-month options volume and its same-day-expiry share
scalar 1×4
→
See all 2,170 queries →