STRASMORE/EXPLORE 2,170 QUERIES

Median spread each half hour, as a multiple of each name's tightest bucket (regular hours, ET)

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-08, from Why Are Spreads Wider at the Open? Real Data.

as of series 13×4read in context →
Median spread each half hour, as a multiple of each name's tightest bucket (regular hours, ET) — 13 rows by 4 columns, computed from US exchange, SIP and OPRA data.
et_timespy_xaapl_xetsy_x
09:301.012.364.98
10:001.011.983.4
10:301.011.672.81
11:001.011.52.01
11:301.011.342.02
12:0011.331.72
12:3011.331.52
13:0011.131.46
13:3011.111.51
14:001.011.021.47
14:3011.121.27
15:0011.011.26
15:30111
Rows × columns
13 × 4
Period covered
to
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 spread each half hour, as a multiple of each name's tightest bucket (regular hours, ET), derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:30 to 15:30
spy_x number 1 to 1.01
aapl_x number 1 to 2.36
etsy_x number 1 to 4.98

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 et_time,
       round(anyIf(rel, ticker = 'SPY'), 2) AS spy_x,
       round(anyIf(rel, ticker = 'AAPL'), 2) AS aapl_x,
       round(anyIf(rel, ticker = 'ETSY'), 2) AS etsy_x
FROM (
    SELECT ticker,
           et_time,
           median_bps / min(median_bps) OVER (PARTITION BY ticker) AS rel
    FROM (
        SELECT ticker,
               formatDateTime(toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
               quantileExact(0.5)(toFloat64(ask_price - bid_price) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000) AS median_bps
        FROM global_markets.cache_stocks_quotes
        WHERE ticker IN ('SPY', 'AAPL', 'ETSY')
          AND sip_timestamp >= toDateTime(today() - 14)
          AND sip_timestamp < toDateTime(today() - 3)
          AND (toHour(sip_timestamp) * 60 + toMinute(sip_timestamp)) BETWEEN 810 AND 1199
          AND bid_price > 0
          AND ask_price > bid_price
        GROUP BY ticker, et_time
    )
)
GROUP BY et_time
ORDER BY et_time

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 Are Spreads Wider at the Open? Real Data
Share of quote updates at the one-cent minimum spread, by half hour (regular hours, ET) series 13×4 MU: median quoted spread by half hour on July 7, 2026 (ET, regular hours) series 13×5 Median quoted spread by phase of the trading day, in basis points (ET clock) ranking 5×4 Session by session: how often, and by how much, the open ran wider than midday table 3×6 The opening premium priced: median and 90th-percentile spread at the open (9:30-10:00 ET) vs. midday (12:00-14:00 ET) table 3×12 Window guard: the UTC session filter maps to a 9:30 a.m. ET start on both ends of the rolling window scalar 1×2 See all 2,170 queries →