One 0DTE contract, all day: SPY's busiest same-day call and put, 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-11, from What Is 0DTE? Zero Days to Expiry Options.
| et_time | call_751_price | put_750_price | spy_vs_751_strike |
|---|---|---|---|
| 09:30 | 0.7 | 1.88 | -1.75 |
| 10:00 | 0.33 | 2.19 | -2.59 |
| 10:30 | 0.49 | 1.08 | -1.13 |
| 11:00 | 0.4 | 0.83 | -0.96 |
| 11:30 | 0.57 | 0.48 | -0.29 |
| 12:00 | 0.52 | 0.42 | -0.27 |
| 12:30 | 0.45 | 0.48 | -0.47 |
| 13:00 | 0.43 | 0.44 | -0.43 |
| 13:30 | 0.42 | 0.47 | -0.52 |
| 14:00 | 0.29 | 0.52 | -0.74 |
| 14:30 | 0.76 | 0.17 | 0.37 |
| 15:00 | 1.01 | 0.06 | 0.83 |
| 15:30 | 1.29 | 0.03 | 1.21 |
| 16:00 | 0.57 | 0.01 | 0.47 |
- Rows × columns
- 14 × 4
- Period covered
- to
- 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 |
|---|---|---|---|
et_time |
date | 09:30 to 16:00 | |
call_751_price |
number | 0.29 to 1.29 | US dollars |
put_750_price |
number | 0.01 to 2.19 | US dollars |
spy_vs_751_strike |
number | -2.59 to 1.21 | US dollars |
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 formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_time,
round(anyIf(close, ticker = 'O:SPY260706C00751000'), 2) AS call_751_price,
round(anyIf(close, ticker = 'O:SPY260706P00750000'), 2) AS put_750_price,
round(anyIf(close, ticker = 'SPY') - 751, 2) AS spy_vs_751_strike
FROM (
SELECT window_start, ticker, close
FROM global_markets.options_minute_aggs
WHERE 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')
AND ticker IN ('O:SPY260706C00751000', 'O:SPY260706P00750000')
UNION ALL
SELECT window_start, ticker, close
FROM global_markets.delayed_stocks_minute_aggs
WHERE 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')
AND ticker = 'SPY'
)
WHERE toMinute(window_start) % 30 = 0
GROUP BY et_time, window_start
ORDER BY window_start
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
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
→
How July 6's same-day SPY contracts finished: out of the money vs. in the money
table 2×5
→
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 →