STRASMORE/EXPLORE 2,170 QUERIES

Quoted bid-ask spread by fund: venue quotes, 11:00 to 13:59 ET, July 22, 2026

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-02, from Mutual Funds vs ETFs: What Actually Differs.

as of ranking 7×4read in context →
Quoted bid-ask spread by fund: venue quotes, 11:00 to 13:59 ET, July 22, 2026 — 7 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerquote_count_millionsmedian_spread_bpsp90_spread_bps
XLU0.072.192.19
AMLP0.021.833.65
VNQ0.211.011.01
VOO0.270.580.73
QQQ0.910.420.57
IWM0.530.340.68
SPY0.790.270.27
Rows × columns
7 × 4
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 Quoted bid-ask spread by fund: venue quotes, 11:00 to 13:59 ET, July 22, 2026, derived from the stored result.
ColumnTypeRangeNotes
ticker text 7 distinct values (AMLP, IWM, QQQ…)
quote_count_millions number 0.02 to 0.91 count
median_spread_bps number 0.27 to 2.19
p90_spread_bps number 0.27 to 3.65

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() / 1000000, 2) AS quote_count_millions,
       round(quantileDeterministic(0.5)(20000 * toFloat64(ask_price - bid_price) / toFloat64(ask_price + bid_price),
                                        cityHash64(sip_timestamp)), 2) AS median_spread_bps,
       round(quantileDeterministic(0.9)(20000 * toFloat64(ask_price - bid_price) / toFloat64(ask_price + bid_price),
                                        cityHash64(sip_timestamp)), 2) AS p90_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('SPY', 'VOO', 'QQQ', 'IWM', 'VNQ', 'XLU', 'AMLP')
  AND toDate(toTimeZone(sip_timestamp, 'America/New_York')) = toDate('2026-07-22')
  AND toHour(toTimeZone(sip_timestamp, 'America/New_York')) BETWEEN 11 AND 13
  AND bid_price > 0
  AND ask_price > bid_price
  AND toFloat64(ask_price - bid_price) / toFloat64(ask_price) < 0.05
GROUP BY ticker
ORDER BY median_spread_bps DESC

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 analysisMutual Funds vs ETFs: What Actually Differs
How far the price travels inside a day: seven ETFs, July 2026 sessions ranking 7×4 One session, many prices: VOO in half-hour marks, Wednesday July 22, 2026 series 32×3 The first active ETF share class: DFMC weekly closes since its March 2026 listing series 20×4 Cash distributions over the trailing year, by declared schedule ranking 5×2 Short-term Treasury yields by month, the reference for fund borrowing costs series 36×3 Monthly cost of a near-the-money call, as a percent of share price series 18×3 See all 2,170 queries →