STRASMORE/EXPLORE 2,170 QUERIES

Median bid-ask spread on SPY same-day contracts quoted $1-$10, by ET hour: July 10, 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 When Do 0DTE Options Trade? By the Hour.

as of ranking 7×4read in context →
Median bid-ask spread on SPY same-day contracts quoted $1-$10, by ET hour: July 10, 2026 — 7 rows by 4 columns, computed from US exchange, SIP and OPRA data.
et_hourquote_updates_mmedian_spread_usdmedian_spread_pct_of_mid
09:000.80.030.8
10:001.40.030.89
11:000.90.031
12:000.30.031.57
13:000.10.12.17
14:000.10.112.38
15:000.10.112.67
Rows × columns
7 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Median bid-ask spread on SPY same-day contracts quoted $1-$10, by ET hour: July 10, 2026, derived from the stored result.
ColumnTypeRangeNotes
et_hour text 7 distinct values (09:00, 10:00, 11:00…)
quote_updates_m number 0.1 to 1.4
median_spread_usd number 0.03 to 0.11 US dollars
median_spread_pct_of_mid number 0.8 to 2.67 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
SELECT formatDateTime(toStartOfHour(toTimeZone(sip_timestamp, 'America/New_York')), '%H:%i') AS et_hour,
       round(count() / 1e6, 1) AS quote_updates_m,
       round(quantileDeterministic(0.5)(toFloat64(ask_price - bid_price), toUInt64(sequence_number)), 3) AS median_spread_usd,
       round(quantileDeterministic(0.5)(toFloat64(ask_price - bid_price) / toFloat64(bid_price + ask_price) * 200,
                                        toUInt64(sequence_number)), 2) AS median_spread_pct_of_mid
FROM global_markets.cache_options_quotes
WHERE ticker LIKE 'O:SPY260710%'
  AND sip_timestamp >= toDateTime64('2026-07-10 13:30:00', 9)
  AND sip_timestamp < toDateTime64('2026-07-10 20:00:00', 9)
  AND bid_price > 0
  AND toFloat64(bid_price + ask_price) / 2 BETWEEN 1 AND 10
GROUP BY et_hour
ORDER BY et_hour

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 analysisWhen Do 0DTE Options Trade? By the Hour
Same-day calls vs. puts by ET hour, and the put share of 0DTE volume: July 10, 2026 ranking 7×4 What the last hour trades: same-day volume by premium paid, 10am hour vs. closing hour, July 10, 2026 ranking 5×4 Same-day options volume by underlying: the ten heaviest names, July 10, 2026 table 10×5 0DTE contract volume, share of all options volume, and flow rate by ET hour: Friday, July 10, 2026 table 7×5 Same-day share of options volume by weekday: all sessions, June 1 to July 10, 2026 series 5×5 Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks ranking 20×3 See all 2,170 queries →