STRASMORE/EXPLORE 2,549 QUERIES

quote_cost_and_depth

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-09-24, from market-making-in-prediction-markets.

as of series 32×3read in context →
quote_cost_and_depth — 32 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timemedian_spread_bpsmedian_quoted_size
04:0031.78200
04:3012.48300
05:0019.34250
05:3013.72200
06:008.74300
06:306.24300
07:006.24300
07:3010300
08:0011.26300
08:3013.76500
09:0021.28300
09:302.53900
10:001.261000
10:301.26900
11:001.251100
11:301.251200
12:001.251200
12:301.251200
13:001.251200
13:301.251200
14:001.251100
14:301.251200
15:001.251100
15:301.251300
16:0051.34500
16:3015500
17:0032.58200
17:3035.06600
18:006.25700
18:3010.63700
19:0010.01200
19:3010.01300
Rows × columns
32 × 3
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 quote_cost_and_depth, derived from the stored result.
ColumnTypeRangeNotes
et_time text 32 distinct values (04:00, 04:30, 05:00…)
median_spread_bps number 1.25 to 51.34
median_quoted_size number 200 to 1,300

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    formatDateTime(toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
    round(quantileDeterministic(0.5)(10000 * (toFloat64(ask_price) - toFloat64(bid_price)) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2), toUInt64(sequence_number)), 2) AS median_spread_bps,
    round(quantileDeterministic(0.5)(toFloat64(bid_size) + toFloat64(ask_size), toUInt64(sequence_number)), 0) AS median_quoted_size
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'KO'
  AND sip_timestamp >= '2026-06-17 08:00:00'
  AND sip_timestamp <  '2026-06-18 00:00:00'
  AND bid_price > 0
  AND ask_price > bid_price
  AND sequence_number >= 0
GROUP BY et_time
ORDER BY et_time
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysismarket-making-in-prediction-markets
outcome_polarization series 31×5 → parity_check table 11×5 → near_expiry_risk ranking 6×4 → The 2s10s spread by month, full history series 604×5 → One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 → 3m10y and 2s10s spreads, monthly averages over twenty years series 241×4 → See all 2,549 queries →