One session shape: median quoted spread by half-hour bucket, Ford (F), recent completed 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-08-22, from Paper Trading Before Real Money.
| et_time | spread_bps | quote_updates_m |
|---|---|---|
| 09:30 | 7.16 | 0.06 |
| 10:00 | 7.15 | 0.07 |
| 10:30 | 7.16 | 0.04 |
| 11:00 | 7.19 | 0.04 |
| 11:30 | 7.19 | 0.03 |
| 12:00 | 7.08 | 0.02 |
| 12:30 | 7.06 | 0.02 |
| 13:00 | 7.18 | 0.02 |
| 13:30 | 7.19 | 0.02 |
| 14:00 | 7.08 | 0.03 |
| 14:30 | 7.1 | 0.02 |
| 15:00 | 7.14 | 0.03 |
| 15:30 | 7.16 | 0.05 |
- Rows × columns
- 13 × 3
- 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 |
|---|---|---|---|
et_time |
date | 09:30 to 15:30 | |
spread_bps |
number | 7.06 to 7.19 | |
quote_updates_m |
number | 0.02 to 0.07 |
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(toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
round(quantileExactIf(0.5)(toFloat64(ask_price - bid_price) / (toFloat64(ask_price + bid_price) / 2), bid_price > 0 AND ask_price > bid_price) * 10000, 2) AS spread_bps,
round(count() / 1e6, 2) AS quote_updates_m
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'F'
AND sip_timestamp >= toDateTime(today() - 10)
AND sip_timestamp < toDateTime(today() - 3)
AND (toHour(sip_timestamp) * 60 + toMinute(sip_timestamp)) BETWEEN 810 AND 1199
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 analysisPaper Trading Before Real Money
What a real fill costs: median quoted spread in bps of the midpoint, regular hours, recent completed sessions
ranking 6×4
→
Five years of sessions: share closing above the open, typical move, and the extremes (SPY, 2021-2025)
table 5×6
→
SPY realised volatility by month against a 10% target
series 72×4
→
AAPL median quoted spread by 30-minute bucket (ET, extended hours included)
series 32×2
→
AAPL average quoted spread by half-hour (ET), one extended session
series 32×2
→
Weekly realised volatility and the weight it implied, Nov 2019 to Apr 2020
series 25×4
→
See all 2,170 queries →