STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

How Block Trades Print on the Tape
Which venues reported AAPL's largest prints, June 10, 2026ranking · 2026-08-20 · 12×3Preview: 12 ranked values, largest first. Execution-to-tape lag by print size, AAPL, June 10, 2026ranking · 2026-08-20 · 4×3Preview: 4 ranked values, smallest first. How AAPL's prints and volume split by trade size, June 10, 2026ranking · 2026-08-20 · 5×3Preview: 5 ranked values, largest first. AAPL volume minute by minute, 3:00 to 4:00 p.m. ET, June 10, 2026series · 2026-08-20 · 60×4Preview: a 16-point series, roughly flat. Sale conditions that flag a specially priced or out-of-sequence printtable · 2026-08-20 · 17×4
Which venues reported AAPL's largest prints, June 10, 2026

Which venues reported AAPL's largest prints, June 10, 2026

most recentas 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
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
$