Quote updates per second and average quoted spread, ten minutes on 17 June 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-08, from Price-Time Priority vs Pro-Rata Fills.
| symbol | quote_updates_per_second | avg_spread_bps |
|---|---|---|
| SPY | 296.4 | 0.32 |
| NVDA | 181.1 | 1.25 |
| AAPL | 34.4 | 1.51 |
| MSFT | 29.5 | 2.16 |
| KO | 28.8 | 2.27 |
- Rows × columns
- 5 × 3
- 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 |
|---|---|---|---|
symbol |
text | 5 distinct values (AAPL, KO, MSFT…) | |
quote_updates_per_second |
number | 28.8 to 296.4 | |
avg_spread_bps |
number | 0.32 to 2.27 |
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
ticker AS symbol,
round(count() / 600.0, 1) AS quote_updates_per_second,
round(avg(toFloat64(ask_price) - toFloat64(bid_price))
/ avg(toFloat64(bid_price)) * 10000, 2) AS avg_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO')
AND sip_timestamp >= '2026-06-17 14:00:00'
AND sip_timestamp < '2026-06-17 14:10:00'
AND bid_price > 0
AND ask_price > bid_price
GROUP BY ticker
ORDER BY quote_updates_per_second DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.