Median quoted spread by sector ETF, one representative session (June 29, 2026), regular hours
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-07-26, from Market Recap: H1 2026.
| ticker | med_spread_bps | quote_updates_m | invalid_dropped |
|---|---|---|---|
| XLV | 0.62 | 2.11 | 150 |
| XLY | 0.86 | 1.19 | 21 |
| XLC | 0.93 | 1.12 | 82 |
| XLI | 1.1 | 1.38 | 12 |
| XLK | 1.1 | 2.72 | 55 |
| XLP | 1.18 | 0.76 | 33 |
| XLE | 1.85 | 0.59 | 1 |
| XLF | 1.86 | 0.38 | 2 |
| XLB | 1.97 | 0.41 | 0 |
| XLU | 2.18 | 0.29 | 6 |
| XLRE | 2.23 | 0.28 | 0 |
- Rows × columns
- 11 × 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 |
|---|---|---|---|
ticker |
text | 11 distinct values (XLB, XLC, XLE…) | |
med_spread_bps |
number | 0.62 to 2.23 | |
quote_updates_m |
number | 0.28 to 2.72 | |
invalid_dropped |
number | 0 to 150 |
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 ticker,
round(quantileDeterministicIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, toUInt64(toUnixTimestamp64Micro(sip_timestamp)), bid_price > 0 AND ask_price >= bid_price), 2) AS med_spread_bps,
round(count() / 1e6, 2) AS quote_updates_m,
countIf(NOT (bid_price > 0 AND ask_price > 0 AND ask_price >= bid_price)) AS invalid_dropped
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('XLB', 'XLC', 'XLE', 'XLF', 'XLI', 'XLK', 'XLP', 'XLRE', 'XLU', 'XLV', 'XLY')
AND sip_timestamp >= toDateTime64('2026-06-29 13:30:00', 9) AND sip_timestamp < toDateTime64('2026-06-29 20:00:00', 9)
GROUP BY ticker
ORDER BY med_spread_bps
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 analysisMarket Recap: H1 2026
The half, month by month (SPY and QQQ, recomputed identically in one query)
ranking 12×4
→
Q2 regular-hours dollar volume, whole tape (one reused-symbol listing excluded pending entity verification)
ranking 8×3
→
Seven maturities: yield at the start of the half vs the end, and the change
ranking 7×4
→
The leader set's half and Q2 returns plus half dollar volume: one ticker-filtered query
ranking 6×4
→
New listings per month across the half
ranking 6×2
→
The 2s10s spread, every print of the half
table 124×2
→
See all 2,170 queries →