STRASMORE/EXPLORE 2,170 QUERIES

Trade size mix in the same window (AAPL, 10:00 to 10:30 a.m. ET, June 16, 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-12, from MBO vs MBP Order Book Data Explained.

as of ranking 5×4read in context →
Trade size mix in the same window (AAPL, 10:00 to 10:30 a.m. ET, June 16, 2026) — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
trade_size_buckettrade_countshare_pctavg_shares
1 to 99 shares7015792.317
100 to 199 shares42575.6116
200 to 499 shares12531.6264
500 to 999 shares2060.3623
1000 or more shares1100.13853
Rows × columns
5 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Trade size mix in the same window (AAPL, 10:00 to 10:30 a.m. ET, June 16, 2026), derived from the stored result.
ColumnTypeRangeNotes
trade_size_bucket text 5 distinct values
trade_count number 110 to 70,157 count
share_pct number 0.1 to 92.3 percent
avg_shares number 17 to 3,853 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
    multiIf(size < 100,  '1 to 99 shares',
            size < 200,  '100 to 199 shares',
            size < 500,  '200 to 499 shares',
            size < 1000, '500 to 999 shares',
            '1000 or more shares')                 AS trade_size_bucket,
    count()                                        AS trade_count,
    round(100 * count() / sum(count()) OVER (), 1) AS share_pct,
    round(avg(size))                               AS avg_shares
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
  AND sip_timestamp >= '2026-06-16 14:00:00'
  AND sip_timestamp <  '2026-06-16 14:30:00'
  AND size > 0
GROUP BY trade_size_bucket
ORDER BY min(size)

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 analysisMBO vs MBP Order Book Data Explained
Top-of-book messages against prints, 10:00 to 10:30 a.m. ET, June 16, 2026 ranking 5×4 What changed between consecutive top-of-book messages (AAPL, 10:00 to 10:30 a.m. ET, June 16, 2026) ranking 4×3 Average quoted spread and time at a one cent spread, midday June 10 2026 ranking 6×3 How AAPL prints break down by trade size, June 10 2026 ranking 5×3 The best bid and the price levels it visited, AAPL, 15 minute buckets series 24×3 Top of book messages against prints on the tape, AAPL, June 10 2026 series 8×4 See all 2,170 queries →