What it cost to trade the busiest contract: NBBO spread over its three sessions
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-27, from SPCX: SpaceX's First Month on the Public Market.
| session | nbbo_updates | dropped_bad_quotes | avg_spread_cents | med_spread_cents | avg_spread_pct_of_mid |
|---|---|---|---|---|---|
| 2026-06-16 | 23567 | 0 | 10.3 | 10 | 6.7 |
| 2026-06-17 | 62486 | 0 | 6.5 | 5 | 7.68 |
| 2026-06-18 | 93198 | 37 | 7.7 | 5 | 5.23 |
- Rows × columns
- 3 × 6
- 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 |
|---|---|---|---|
session |
date | 2026-06-16 to 2026-06-18 | |
nbbo_updates |
number | 23,567 to 93,198 | |
dropped_bad_quotes |
number | 0 to 37 | |
avg_spread_cents |
number | 6.5 to 10.3 | |
med_spread_cents |
number | 5 to 10 | |
avg_spread_pct_of_mid |
number | 5.23 to 7.68 | 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
toDate(sip_timestamp) AS session,
count() AS nbbo_updates,
countIf(bid_price <= 0 OR ask_price < bid_price) AS dropped_bad_quotes,
round(avgIf(toFloat64(ask_price) - toFloat64(bid_price), bid_price > 0 AND ask_price >= bid_price) * 100, 1) AS avg_spread_cents,
round(quantileDeterministicIf(0.5)(toFloat64(ask_price) - toFloat64(bid_price), toUInt64(sequence_number), bid_price > 0 AND ask_price >= bid_price) * 100, 1) AS med_spread_cents,
round(100 * avgIf((toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2), bid_price > 0 AND ask_price >= bid_price), 2) AS avg_spread_pct_of_mid
FROM global_markets.cache_options_quotes
WHERE ticker = 'O:SPCX260618P00175000'
AND sip_timestamp >= toDateTime64('2026-06-16 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-06-19 00:00:00', 9)
GROUP BY session
ORDER BY session
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 analysisSPCX: SpaceX's First Month on the Public Market
Symbol-reuse receipt: thirteen months of SPCX minute bars, May 2026 is absent entirely
series 12×5
→
The seasoning curve: regular-hours spread by session, per-update and time-weighted
series 12×8
→
FINRA off-exchange short volume by session: marked-short share and reported volume
series 12×4
→
The sessions: regular-hours close, close-over-close change, full-day volume
series 12×5
→
Options session by session: contracts, the call/put split, and the put/call ratio
series 10×7
→
Where the contracts landed: call and put volume by strike bucket
table 19×5
→
See all 2,170 queries →