AAPL: average NBBO updates per minute by half-hour bucket (ET, 4 a.m. to 8 p.m.)
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 What Is the NBBO? National Best Bid and Offer.
| et_time | avg_updates_per_minute | pct_of_opening_bucket |
|---|---|---|
| 04:00 | 24 | 0.6 |
| 04:30 | 10 | 0.3 |
| 05:00 | 12 | 0.3 |
| 05:30 | 13 | 0.3 |
| 06:00 | 10 | 0.3 |
| 06:30 | 13 | 0.3 |
| 07:00 | 20 | 0.5 |
| 07:30 | 23 | 0.6 |
| 08:00 | 22 | 0.6 |
| 08:30 | 28 | 0.7 |
| 09:00 | 52 | 1.3 |
| 09:30 | 3901 | 100 |
| 10:00 | 3110 | 79.7 |
| 10:30 | 2436 | 62.4 |
| 11:00 | 2283 | 58.5 |
| 11:30 | 1950 | 50 |
| 12:00 | 1504 | 38.6 |
| 12:30 | 1274 | 32.7 |
| 13:00 | 1150 | 29.5 |
| 13:30 | 1235 | 31.7 |
| 14:00 | 1261 | 32.3 |
| 14:30 | 1440 | 36.9 |
| 15:00 | 1412 | 36.2 |
| 15:30 | 3330 | 85.4 |
| 16:00 | 18 | 0.5 |
| 16:30 | 11 | 0.3 |
| 17:00 | 5 | 0.1 |
| 17:30 | 5 | 0.1 |
| 18:00 | 8 | 0.2 |
| 18:30 | 5 | 0.1 |
| 19:00 | 6 | 0.2 |
| 19:30 | 10 | 0.3 |
- Rows × columns
- 32 × 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 | 04:00 to 19:30 | |
avg_updates_per_minute |
number | 5 to 3,901 | |
pct_of_opening_bucket |
number | 0.1 to 100 | percent |
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 et_time,
avg_updates_per_minute,
round(100 * avg_updates_per_minute / maxIf(avg_updates_per_minute, et_time = '09:30') OVER (), 1) AS pct_of_opening_bucket
FROM (
SELECT formatDateTime(toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
round(count() / (uniqExact(toDate(toTimeZone(sip_timestamp, 'America/New_York'))) * 30)) AS avg_updates_per_minute
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'AAPL'
AND sip_timestamp >= toDateTime(today() - 10)
AND sip_timestamp < toDateTime(today() - 3)
AND toDate(toTimeZone(sip_timestamp, 'America/New_York')) IN (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= toDateTime(today() - 10)
AND window_start < toDateTime(today() - 3)
GROUP BY session_date
HAVING countIf((toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) = 390
)
GROUP BY et_time
HAVING et_time >= '04:00' AND et_time < '20:00'
)
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 analysisWhat Is the NBBO? National Best Bid and Offer
GME, 2024-05-14: NBBO updates and trades per minute across a five-minute LULD pause
series 15×3
→
KO: ten consecutive NBBO updates from 1:30 p.m. ET on a recent session
series 10×7
→
NBBO updates per session: four heavily traded names vs. two thin small caps
series 6×5
→
The smallest size the NBBO will show: six names across the price tiers
ranking 6×4
→
Exchange stamp to SIP stamp: the consolidation step, in microseconds
ranking 4×3
→
AAPL median quoted spread by 30-minute bucket (ET, extended hours included)
series 32×2
→
See all 2,170 queries →