The whole NBBO stream in one row: QQQ and NVDA pinned by name
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-07-26, from Microstructure Deep-Dive: June 29, 2026.
updates m
505.38
qqq updates m
5.23
nvda updates m
1.8
qqq minus nvda updates m
3.43
nvda minus next single m
0.67
- Rows × columns
- 1 × 5
- 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 |
|---|---|---|---|
updates_m |
number | every row is 505.38 | |
qqq_updates_m |
number | every row is 5.23 | |
nvda_updates_m |
number | every row is 1.8 | |
qqq_minus_nvda_updates_m |
number | every row is 3.43 | |
nvda_minus_next_single_m |
number | every row is 0.67 |
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
WITH
(
SELECT (round(countIf(ticker = 'QQQ') / 1e6, 2), round(countIf(ticker = 'NVDA') / 1e6, 2),
round(countIf(ticker = 'AAPL') / 1e6, 2), round(countIf(ticker = 'TSLA') / 1e6, 2))
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('QQQ', 'NVDA', 'AAPL', 'TSLA')
AND sip_timestamp >= '2026-06-29 00:00:00' AND sip_timestamp < '2026-06-30 00:00:00'
) AS pinned
SELECT
round(count() / 1e6, 2) AS updates_m,
pinned.1 AS qqq_updates_m,
pinned.2 AS nvda_updates_m,
round(pinned.1 - pinned.2, 2) AS qqq_minus_nvda_updates_m,
round(pinned.2 - greatest(pinned.3, pinned.4), 2) AS nvda_minus_next_single_m
FROM global_markets.cache_stocks_quotes
WHERE sip_timestamp >= '2026-06-29 00:00:00' AND sip_timestamp < '2026-06-30 00:00:00'
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 analysisMicrostructure Deep-Dive: June 29, 2026
Raw vs SIP-counted volume, applying the derived exclusion set
scalar 1×4
→
One day of trades: session check plus the size of every print
scalar 1×8
→
SPY under the microscope: nanosecond gaps, the spread two ways, quote quality
scalar 1×12
→
How many of the ten busiest minutes fall outside the open and the close
scalar 1×4
→
The exclusion set, derived from the tape's own code dictionary (one row)
scalar 1×3
→
The receipt: CAG's closing auction and its code-15 re-report, side by side
scalar 1×6
→
See all 2,170 queries →