STRASMORE/EXPLORE 2,170 QUERIES

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.

as of series 13×3read in context →
One session shape: median quoted spread by half-hour bucket, Ford (F), recent completed sessions — 13 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timespread_bpsquote_updates_m
09:307.160.06
10:007.150.07
10:307.160.04
11:007.190.04
11:307.190.03
12:007.080.02
12:307.060.02
13:007.180.02
13:307.190.02
14:007.080.03
14:307.10.02
15:007.140.03
15:307.160.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for One session shape: median quoted spread by half-hour bucket, Ford (F), recent completed sessions, derived from the stored result.
ColumnTypeRangeNotes
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 →