AAPL's ten largest prints of July 6, 2026: the whole tape
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.
| et_time | shares | shares_m | price | notional_musd | where_it_printed |
|---|---|---|---|---|---|
| 16:00:00 | 10347588 | 10.35 | 312.66 | 3235.3 | closing auction (exchange) |
| 12:36:42 | 1950800 | 1.95 | 312.61 | 609.8 | on exchange (continuous) |
| 16:07:57 | 1179559 | 1.18 | 312.66 | 368.8 | off-exchange (FINRA TRF) |
| 12:39:00 | 1000000 | 1 | 312.005 | 312 | on exchange (continuous) |
| 16:00:05 | 651593 | 0.65 | 312.66 | 203.7 | off-exchange (FINRA TRF) |
| 09:30:00 | 628955 | 0.63 | 307.58 | 193.5 | opening auction (exchange) |
| 18:03:50 | 441395 | 0.44 | 312.66 | 138 | off-exchange (FINRA TRF) |
| 12:41:43 | 300000 | 0.3 | 312.8 | 93.8 | on exchange (continuous) |
| 16:00:06 | 289545 | 0.29 | 312.66 | 90.5 | off-exchange (FINRA TRF) |
| 12:12:44 | 285000 | 0.28 | 312.8 | 89.1 | on exchange (continuous) |
- Rows × columns
- 10 × 6
- Period covered
- to
- 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 |
|---|---|---|---|
et_time |
date | 09:30:00 to 18:03:50 | |
shares |
number | 285,000 to 10,347,588 | count |
shares_m |
number | 0.28 to 10.35 | count |
price |
number | 307.58 to 312.8 | US dollars |
notional_musd |
number | 89.1 to 3,235.3 | |
where_it_printed |
text | 4 distinct values |
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
formatDateTime(toTimeZone(sip_timestamp, 'America/New_York'), '%H:%i:%S') AS et_time,
size AS shares,
round(toFloat64(size) / 1e6, 2) AS shares_m,
toFloat64(price) AS price,
round(toFloat64(size) * toFloat64(price) / 1e6, 1) AS notional_musd,
multiIf(has(conditions, 8), 'closing auction (exchange)',
has(conditions, 17), 'opening auction (exchange)',
exchange = 4, 'off-exchange (FINRA TRF)',
'on exchange (continuous)') AS where_it_printed
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])
ORDER BY shares DESC, sip_timestamp, price
LIMIT 10
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
Where AAPL's 10,000-share-and-up prints executed: July 6, 2026
table 4×5
→
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
→
MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session)
series 49×3
→
SPY: median shares traded per minute, by 30-minute clock bucket (ET, last 30 days, extended hours)
series 32×2
→
Top 10 by full-day RVOL: latest completed session (20-day ADV above 5M shares, full history required)
series 10×5
→
See all 2,170 queries →