Where AAPL prints fall by trade size, June 17, 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-08-07, from Rule 605 vs 606: Execution Quality Reports.
| size_bucket | pct_of_trades | pct_of_shares |
|---|---|---|
| 1 to 99 (odd lot) | 88.94 | 22.76 |
| 100 to 499 | 10.54 | 21.74 |
| 500 to 1,999 | 0.46 | 4.87 |
| 2,000 to 4,999 | 0.04 | 1.71 |
| 5,000 and up | 0.02 | 48.92 |
- Rows × columns
- 5 × 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 |
|---|---|---|---|
size_bucket |
text | 5 distinct values | |
pct_of_trades |
number | 0.02 to 88.94 | percent |
pct_of_shares |
number | 1.71 to 48.92 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
size_bucket,
round(100 * trade_count / sum(trade_count) OVER (), 2) AS pct_of_trades,
round(100 * shares / sum(shares) OVER (), 2) AS pct_of_shares
FROM
(
SELECT
multiIf(size < 100, '1 to 99 (odd lot)',
size < 500, '100 to 499',
size < 2000, '500 to 1,999',
size < 5000, '2,000 to 4,999',
'5,000 and up') AS size_bucket,
min(size) AS min_size,
count() AS trade_count,
sum(size) AS shares
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
AND sip_timestamp >= '2026-06-17 11:00:00'
AND sip_timestamp < '2026-06-17 22:00:00'
AND size > 0
GROUP BY size_bucket
)
ORDER BY min_size