STRASMORE/EXPLORE 2,170 QUERIES

Which venues reported AAPL's largest prints, June 10, 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-20, from How Block Trades Print on the Tape.

as of ranking 12×3read in context →
Which venues reported AAPL's largest prints, June 10, 2026 — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venueprints_10k_plusavg_shares_per_print
FINRA Alternative Display Facility6447
Nasdaq11113
NYSE Texas, Inc.6618
NYSE Arca, Inc.435
Cboe EDGX352
Nasdaq Philadelphia Exchange LLC027
24X National Exchange LLC037
New York Stock Exchange041
Investors Exchange058
Cboe BZX051
MIAX Pearl037
Nasdaq Texas, Inc.027
Rows × columns
12 × 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 Which venues reported AAPL's largest prints, June 10, 2026, derived from the stored result.
ColumnTypeRangeNotes
venue text 12 distinct values
prints_10k_plus number 0 to 64
avg_shares_per_print number 27 to 618 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
    if(venue_name = '', concat('Venue ', toString(venue_id)), venue_name) AS venue,
    prints_10k_plus,
    avg_shares_per_print
FROM
(
    SELECT
        toInt32(exchange)               AS venue_id,
        countIf(size >= 10000)          AS prints_10k_plus,
        round(avg(toFloat64(size)), 0)  AS avg_shares_per_print
    FROM global_markets.stocks_trades
    WHERE ticker = 'AAPL'
      AND sip_timestamp >= toDateTime('2026-06-10 00:00:00', 'UTC')
      AND sip_timestamp <  toDateTime('2026-06-11 00:00:00', 'UTC')
    GROUP BY venue_id
) AS v
LEFT JOIN
(
    SELECT
        toInt32(id) AS venue_id,
        any(name)   AS venue_name
    FROM global_markets.stocks_exchanges
    GROUP BY venue_id
) AS e USING (venue_id)
ORDER BY prints_10k_plus DESC
LIMIT 12

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 analysisHow Block Trades Print on the Tape
How AAPL's prints and volume split by trade size, June 10, 2026 ranking 5×3 Execution-to-tape lag by print size, AAPL, June 10, 2026 ranking 4×3 AAPL volume minute by minute, 3:00 to 4:00 p.m. ET, June 10, 2026 series 60×4 Sale conditions that flag a specially priced or out-of-sequence print table 17×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 When headlines actually land: article counts by ET clock hour, July 2026 ranking 24×4 See all 2,170 queries →