STRASMORE/EXPLORE 2,433 QUERIES

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.

as of ranking 5×3read in context →
Where AAPL prints fall by trade size, June 17, 2026 — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
size_bucketpct_of_tradespct_of_shares
1 to 99 (odd lot)88.9422.76
100 to 49910.5421.74
500 to 1,9990.464.87
2,000 to 4,9990.041.71
5,000 and up0.0248.92
Rows × columns
5 × 3
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 Where AAPL prints fall by trade size, June 17, 2026, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter
More from this analysisRule 605 vs 606: Execution Quality Reports
Share of June 2026 volume reported to FINRA facilities ranking 5×3 Effective spread against quoted spread by trade size, AAPL ranking 4×4 AAPL quoted spread across the trading clock, June 17, 2026 series 22×3 Where Apple trades printed on June 10, 2026, by venue ranking 15×3 Listed option series carrying data on one date, by underlying ranking 5×4 Share of Apple volume printed off exchange, by month series 12×2 See all 2,433 queries →