STRASMORE/EXPLORE 2,170 QUERIES

Where Apple trades printed on June 10, 2026, by venue

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-11, from Who Are the Biggest Market Makers?.

as of ranking 15×3read in context →
Where Apple trades printed on June 10, 2026, by venue — 15 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venueshare_of_volume_pctavg_print_size
FINRA Alternative Display Facility38.9347
Nasdaq37.55113
NYSE Arca, Inc.6.9735
Cboe BZX4.3151
Investors Exchange3.0858
NYSE Texas, Inc.2.78618
Cboe EDGX2.3452
Members Exchange1.7242
New York Stock Exchange1.1441
Cboe BYX0.336
Nasdaq Texas, Inc.0.2327
Cboe EDGA0.2328
MIAX Pearl0.1537
NYSE National, Inc.0.1336
Nasdaq Philadelphia Exchange LLC0.0827
Rows × columns
15 × 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 Apple trades printed on June 10, 2026, by venue, derived from the stored result.
ColumnTypeRangeNotes
venue text 15 distinct values (Cboe BYX, Cboe BZX, Cboe EDGA…)
share_of_volume_pct number 0.08 to 38.93 percent
avg_print_size number 27 to 618

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
WITH
    by_venue AS
    (
        SELECT
            toString(exchange) AS venue_id,
            sum(size)          AS shares,
            count()            AS prints
        FROM global_markets.stocks_trades
        WHERE ticker = 'AAPL'
          AND sip_timestamp >= '2026-06-10 00:00:00'
          AND sip_timestamp <  '2026-06-11 00:00:00'
        GROUP BY venue_id
    ),
    venue_names AS
    (
        SELECT
            toString(id) AS venue_id,
            any(name)    AS venue_name
        FROM global_markets.stocks_exchanges
        WHERE asset_class = 'stocks'
        GROUP BY id
    )
SELECT
    if(n.venue_name = '', concat('Venue ', b.venue_id), n.venue_name)                  AS venue,
    round(100 * toFloat64(b.shares) / toFloat64((SELECT sum(shares) FROM by_venue)), 2) AS share_of_volume_pct,
    round(toFloat64(b.shares) / b.prints, 0)                                            AS avg_print_size
FROM by_venue AS b
LEFT JOIN venue_names AS n ON n.venue_id = b.venue_id
ORDER BY share_of_volume_pct DESC
LIMIT 15

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 analysisWho Are the Biggest Market Makers?
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 Quoted spread and quote traffic over fifteen minutes, June 10, 2026 table 5×5 Where AAPL prints fall by trade size, June 17, 2026 ranking 5×3 Share of June 2026 volume reported to FINRA facilities ranking 5×3 Effective spread against quoted spread by trade size, AAPL ranking 4×4 See all 2,170 queries →