The largest single prints of June 29 (dictionary-excluded codes stripped)
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 Microstructure Deep-Dive: June 29, 2026.
| ticker | et_time | shares_m | price | notional_usd_m | pct_of_biggest_dollar_print | condition_id |
|---|---|---|---|---|---|---|
| CAG | 16:04:53 | 61.69 | 13.98 | 862.5 | 25.4 | 8, 41 |
| SNAP | 11:46:13 | 22.6 | 4.41 | 99.7 | 2.9 | 53, 41 |
| NVDA | 16:00:00 | 17.38 | 194.97 | 3389.5 | 100 | 8, 9, 41 |
| CAG | 16:04:59 | 15.17 | 13.98 | 212 | 6.3 | 12, 2 |
| CAG | 16:04:53 | 12.87 | 13.98 | 179.9 | 5.3 | 12 |
| CAG | 16:04:53 | 12.61 | 13.98 | 176.3 | 5.2 | 12 |
| ARI | 16:03:52 | 12.54 | 10.52 | 131.9 | 3.9 | 8, 41 |
| AAPL | 16:00:00 | 11.65 | 281.74 | 3281.7 | 96.8 | 8, 9, 41 |
| GPUS | 16:02:47 | 10 | 0.1545 | 1.5 | 0 | 12, 2 |
- Rows × columns
- 9 × 7
- 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 |
|---|---|---|---|
ticker |
text | 6 distinct values (AAPL, ARI, CAG…) | |
et_time |
date | 11:46:13 to 16:04:59 | |
shares_m |
number | 10 to 61.69 | count |
price |
number | 0.1545 to 281.74 | US dollars |
notional_usd_m |
number | 1.5 to 3,389.5 | US dollars |
pct_of_biggest_dollar_print |
number | 0 to 100 | percent |
condition_id |
text | 5 distinct values (12, 12, 2, 53, 41…) |
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
ticker,
formatDateTime(toTimeZone(sip_timestamp, 'America/New_York'), '%H:%i:%S') AS et_time,
round(toFloat64(size) / 1e6, 2) AS shares_m,
toFloat64(price) AS price,
round(toFloat64(size) * toFloat64(price) / 1e6, 1) AS notional_usd_m,
round(100 * (toFloat64(size) * toFloat64(price)) / max(toFloat64(size) * toFloat64(price)) OVER (), 1) AS pct_of_biggest_dollar_print,
arrayStringConcat(arrayMap(c -> toString(c), conditions), ', ') AS condition_id
FROM global_markets.stocks_trades
WHERE sip_timestamp >= '2026-06-29 00:00:00' AND sip_timestamp < '2026-06-30 00:00:00'
AND size >= 10000000
AND NOT hasAny(conditions, [15, 16, 38])
ORDER BY size DESC
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 analysisMicrostructure Deep-Dive: June 29, 2026
SPY's median quoted spread by half hour, 4:00 am to 8:00 pm ET
series 32×3
→
Completeness probe: FINRA short-volume file coverage, June 26-30
series 3×6
→
The ten busiest minutes of the trade tape (millions of prints)
ranking 10×2
→
NBBO quote updates for eight heavily-quoted tickers (millions)
ranking 8×2
→
Raw vs SIP-counted volume, applying the derived exclusion set
scalar 1×4
→
One day of trades: session check plus the size of every print
scalar 1×8
→
See all 2,170 queries →