Rank receipt: NVDA's weekly dollar volume against every other ticker, plus the Friday-only rank
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.
nvda rank
3
nvda dollar bn
107.1
single stocks above nvda
1
pct of leader
65.3
friday rank
1
friday nvda rth bn
26.56
friday margin over next bn
0.27
- Rows × columns
- 1 × 7
- 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 |
|---|---|---|---|
nvda_rank |
number | every row is 3 | |
nvda_dollar_bn |
number | every row is 107.1 | |
single_stocks_above_nvda |
number | every row is 1 | |
pct_of_leader |
number | every row is 65.3 | percent |
friday_rank |
number | every row is 1 | |
friday_nvda_rth_bn |
number | every row is 26.56 | |
friday_margin_over_next_bn |
number | every row is 0.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.
the exact SQL behind every number
WITH (
SELECT sum(toFloat64(volume) * toFloat64(close))
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND window_start >= toDateTime('2026-07-06 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
) AS nvda_d,
(
SELECT sum(toFloat64(volume) * toFloat64(close))
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND window_start >= toDateTime('2026-07-10 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
) AS nvda_friday,
(
SELECT (countIf(d > nvda_friday) + 1, max(d))
FROM (
SELECT ticker, sum(toFloat64(volume) * toFloat64(close)) AS d
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime('2026-07-10 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
AND ticker NOT IN ('SPCX', 'NVDA')
GROUP BY ticker
)
) AS friday_field
SELECT
countIf(d > nvda_d AND ticker != 'NVDA') + 1 AS nvda_rank,
round(nvda_d / 1e9, 1) AS nvda_dollar_bn,
countIf(d > nvda_d AND ticker NOT IN ('SPY', 'QQQ', 'NVDA')) AS single_stocks_above_nvda,
round(100 * nvda_d / max(d), 1) AS pct_of_leader,
friday_field.1 AS friday_rank,
round(nvda_friday / 1e9, 2) AS friday_nvda_rth_bn,
round((nvda_friday - friday_field.2) / 1e9, 2) AS friday_margin_over_next_bn
FROM (
SELECT ticker, sum(toFloat64(volume) * toFloat64(close)) AS d
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime('2026-07-06 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
AND ticker NOT IN ('SPCX')
GROUP BY ticker
)
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
Print-size anatomy and quote census: NVDA, full week
scalar 1×5
→
NVDA, week of July 6, 2026: open to close, extremes with receipts, volume
scalar 1×14
→
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 →