STRASMORE/EXPLORE 2,170 QUERIES

What it cost to cross the spread: NBBO updates and median quoted width, 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: June 29, 2026, The Day in Numbers.

as of table 4×7read in context →
What it cost to cross the spread: NBBO updates and median quoted width, regular hours — 4 rows by 7 columns, computed from US exchange, SIP and OPRA data.
tickernbbo_updates_mmedian_spread_bpsopen_30min_spread_bpsmidday_spread_bpsopen_minus_midday_bpsdropped_invalid_quotes
MU0.754.66.554.112.44414
QQQ4.420.840.980.550.42629
SPY3.980.410.410.270.141544
WDC0.128.214.337.556.7843
Rows × columns
4 × 7
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 What it cost to cross the spread: NBBO updates and median quoted width, regular hours, derived from the stored result.
ColumnTypeRangeNotes
ticker text 4 distinct values (MU, QQQ, SPY…)
nbbo_updates_m number 0.12 to 4.42
median_spread_bps number 0.41 to 8.2
open_30min_spread_bps number 0.41 to 14.33 US dollars
midday_spread_bps number 0.27 to 7.55
open_minus_midday_bps number 0.14 to 6.78 US dollars
dropped_invalid_quotes number 43 to 1,544

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(count() / 1e6, 2) AS nbbo_updates_m,
    round(quantileExactIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price >= bid_price), 2) AS median_spread_bps,
    round(quantileExactIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price >= bid_price AND sip_timestamp >= '2026-06-29 13:30:00' AND sip_timestamp < '2026-06-29 14:00:00'), 2) AS open_30min_spread_bps,
    round(quantileExactIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price >= bid_price AND sip_timestamp >= '2026-06-29 17:00:00' AND sip_timestamp < '2026-06-29 17:30:00'), 2) AS midday_spread_bps,
    round(quantileExactIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price >= bid_price AND sip_timestamp >= '2026-06-29 13:30:00' AND sip_timestamp < '2026-06-29 14:00:00')
        - quantileExactIf(0.5)((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price >= bid_price AND sip_timestamp >= '2026-06-29 17:00:00' AND sip_timestamp < '2026-06-29 17:30:00'), 2) AS open_minus_midday_bps,
    countIf(NOT (bid_price > 0 AND ask_price >= bid_price)) AS dropped_invalid_quotes
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('SPY', 'QQQ', 'MU', 'WDC')
  AND sip_timestamp >= '2026-06-29 13:30:00' AND sip_timestamp < '2026-06-29 20:00:00'
GROUP BY ticker
ORDER BY ticker

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: June 29, 2026, The Day in Numbers
The eleven sector baskets: June 29 vs the June 26 close, regular hours table 11×6 Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded table 10×6 SPY / QQQ / DIA / IWM: June 29 vs the June 26 close, regular hours table 4×9 The memory/storage names: change vs Friday's close and intraday range table 4×9 Shares traded per 30-minute bucket, regular hours (billions) series 13×4 The Treasury curve, June 29 close vs June 26 (populated maturities only) ranking 8×3 See all 2,170 queries →