Rank receipt: the week's dollar volume against every other ticker
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 SPCX: The Week It Went Underwater.
spcx rank
11
spcx dollar bn
41.7
pct of leader
25.4
- Rows × columns
- 1 × 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 |
|---|---|---|---|
spcx_rank |
number | every row is 11 | |
spcx_dollar_bn |
number | every row is 41.7 | |
pct_of_leader |
number | every row is 25.4 | 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 sum(toFloat64(volume) * toFloat64(close))
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPCX'
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 spcx_d
SELECT
countIf(d > spcx_d AND ticker != 'SPCX') + 1 AS spcx_rank,
round(spcx_d / 1e9, 1) AS spcx_dollar_bn,
round(100 * spcx_d / max(d), 1) AS pct_of_leader
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
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 analysisSPCX: The Week It Went Underwater
Print-size anatomy and quote census: full week
scalar 1×5
→
SPCX, week of July 6, 2026: the slide, receipted
scalar 1×14
→
Options on the new entity, full week: contracts, put-call, busiest contract
scalar 1×4
→
The week's news flow: counts, plus the three storyline receipts, quoted verbatim
scalar 1×9
→
The symbol's trading history by month: the gap and the new entity's arrival
series 12×5
→
The week's heaviest tickers by regular-hours dollar volume: where the newcomer now sits
ranking 12×4
→
See all 2,170 queries →