Print-size anatomy and quote census: NVDA, full week
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 NVDA: Sit-Out, Then Surge, Week of July 6.
prints m
12.17
median print shares
3
odd lot pct of prints
84.4
nbbo updates m
9.86
clean two sided pct
98.99
- 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 |
|---|---|---|---|
prints_m |
number | every row is 12.17 | |
median_print_shares |
number | every row is 3 | count |
odd_lot_pct_of_prints |
number | every row is 84.4 | percent |
nbbo_updates_m |
number | every row is 9.86 | |
clean_two_sided_pct |
number | every row is 98.99 | 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
WITH
(
SELECT (round(count() / 1e6, 2),
round(100.0 * countIf(bid_price > 0 AND ask_price > 0 AND ask_price > bid_price) / count(), 2))
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'NVDA'
AND sip_timestamp >= toDateTime64('2026-07-06 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-11 00:00:00', 9)
) AS quote_census
SELECT
round(count() / 1e6, 2) AS prints_m,
quantileDeterministic(0.5)(toFloat64(size), toUInt64(abs(sequence_number))) AS median_print_shares,
round(100.0 * countIf(size < 100) / count(), 1) AS odd_lot_pct_of_prints,
quote_census.1 AS nbbo_updates_m,
quote_census.2 AS clean_two_sided_pct
FROM global_markets.stocks_trades
WHERE ticker = 'NVDA'
AND sip_timestamp >= toDateTime64('2026-07-06 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-11 00:00:00', 9)
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 analysisNVDA: Sit-Out, Then Surge, Week of July 6
NVDA, week of July 6, 2026: open to close, extremes with receipts, volume
scalar 1×14
→
Rank receipt: NVDA's weekly dollar volume against every other ticker, plus the Friday-only rank
scalar 1×7
→
NVDA position check as of Friday's close: trailing-year extremes and moving averages
scalar 1×12
→
NVDA options, full week: totals, put-call vs trailing baseline, strikes and expiries decoded
scalar 1×11
→
News-feed attention: articles tagged NVDA during the week, decoded
scalar 1×11
→
NVDA weekly returns, trailing ~26 weeks (open-to-close per week): where this week ranks
table 27×3
→
See all 2,170 queries →