Where AAPL's 10,000-share-and-up prints executed: 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.
| venue | block_prints | block_shares_m | pct_of_block_volume | prints_with_trf_timestamp |
|---|---|---|---|---|
| Closing auction (exchange) | 1 | 10.35 | 51 | 0 |
| Off-exchange (FINRA TRF) | 62 | 5.26 | 26 | 62 |
| On exchange, continuous | 14 | 4.03 | 19.9 | 0 |
| Opening auction (exchange) | 1 | 0.63 | 3.1 | 0 |
- Rows × columns
- 4 × 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 |
|---|---|---|---|
venue |
text | 4 distinct values | |
block_prints |
number | 1 to 62 | |
block_shares_m |
number | 0.63 to 10.35 | count |
pct_of_block_volume |
number | 3.1 to 51 | percent |
prints_with_trf_timestamp |
number | 0 to 62 |
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
multiIf(has(conditions, 8), 'Closing auction (exchange)',
has(conditions, 17), 'Opening auction (exchange)',
exchange = 4, 'Off-exchange (FINRA TRF)',
'On exchange, continuous') AS venue,
count() AS block_prints,
round(toFloat64(sum(size)) / 1e6, 2) AS block_shares_m,
round(100.0 * toFloat64(sum(size)) / sum(toFloat64(sum(size))) OVER (), 1) AS pct_of_block_volume,
countIf(trf_timestamp IS NOT NULL AND trf_timestamp > toDateTime64('1970-01-02 00:00:00', 9)) AS prints_with_trf_timestamp
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
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])
AND size >= 10000
GROUP BY venue
ORDER BY block_shares_m DESC, venue
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
AAPL's ten largest prints of July 6, 2026: the whole tape
series 10×6
→
The same block scan on SPY: July 6, 2026
scalar 1×7
→
Block-size prints vs the whole AAPL tape: July 6, 2026, with the session receipt
scalar 1×9
→
20-session regular-hours ADV: shares, dollars, and the extended-hours share (June 11 – July 10, 2026)
table 5×5
→
Anatomy of TSLA's prints on July 2, 2026: off-exchange vs. on-exchange
table 2×7
→
Days to cover, recomputed: FINRA's denominator vs this page's 20-session regular-hours ADV (settlement June 30, 2026)
table 2×6
→
See all 2,170 queries →