The same block scan on SPY: July 6, 2026
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 What Is a Block Trade? Big Prints & the Data.
total prints
669,171
block prints
79
block pct of prints
0.01
total volume m
50.8
block volume m
13.8
block pct of volume
27.1
median trade shares
34
- 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 |
|---|---|---|---|
total_prints |
number | every row is 669,171 | |
block_prints |
number | every row is 79 | |
block_pct_of_prints |
number | every row is 0.01 | percent |
total_volume_m |
number | every row is 50.8 | count |
block_volume_m |
number | every row is 13.8 | count |
block_pct_of_volume |
number | every row is 27.1 | percent |
median_trade_shares |
number | every row is 34 | count |
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
count() AS total_prints,
countIf(size >= 10000) AS block_prints,
round(100.0 * countIf(size >= 10000) / count(), 2) AS block_pct_of_prints,
round(toFloat64(sum(size)) / 1e6, 1) AS total_volume_m,
round(toFloat64(sumIf(size, size >= 10000)) / 1e6, 1) AS block_volume_m,
round(100.0 * toFloat64(sumIf(size, size >= 10000)) / toFloat64(sum(size)), 1) AS block_pct_of_volume,
round(quantileDeterministic(0.5)(toFloat64(size), toUInt64(sip_timestamp))) AS median_trade_shares
FROM global_markets.stocks_trades
WHERE ticker = 'SPY'
AND sip_timestamp >= '2026-07-06 00:00:00' AND sip_timestamp < '2026-07-07 00:00:00'
AND NOT hasAny(conditions, [15, 16, 38])
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 a Block Trade? Big Prints & the Data
Block-size prints vs the whole AAPL tape: July 6, 2026, with the session receipt
scalar 1×9
→
AAPL's ten largest prints of July 6, 2026: the whole tape
series 10×6
→
Where AAPL's 10,000-share-and-up prints executed: July 6, 2026
table 4×5
→
MU, the biggest-volume session of June 2026: time-adjusted vs. naive RVOL, plus the full-day figure
scalar 1×8
→
The receipt: TRF timestamps and the FINRA venue code agree on every AAPL report
scalar 1×5
→
MU's sharpest 2026 volume shock: the event day vs the trailing ADV before and after
scalar 1×6
→
See all 2,170 queries →