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

What Real-Time Market Data Actually Costs
Where AAPL shares printed across venues, June 16 2026ranking · 2026-08-22 · 12×2Preview: 12 ranked values, largest first. US symbols that traded each month over the past yearseries · 2026-08-22 · 12×3Preview: a 12-point series, ending higher. AAPL quote updates by ET clock hour, June 16 2026ranking · 2026-08-22 · 16×3Preview: 16 ranked values, largest first. One ETF's daily record, year by yearranking · 2026-08-22 · 15×3Preview: 15 ranked values, largest first.
Where AAPL shares printed across venues, June 16 2026

Where AAPL shares printed across venues, June 16 2026

most recentas of ranking 12×2read in context →
Where AAPL shares printed across venues, June 16 2026 — 12 rows by 2 columns, computed from US exchange, SIP and OPRA data.
venueshare_of_volume_pct
Nasdaq47.76
FINRA Alternative Display Facility32.33
NYSE Arca, Inc.6.43
Cboe BZX3.34
Investors Exchange2.57
Cboe EDGX2.28
NYSE Texas, Inc.1.77
Members Exchange1.29
New York Stock Exchange0.98
Cboe EDGA0.35
Cboe BYX0.25
MIAX Pearl0.22
the exact SQL behind every number
SELECT
    venue,
    round(100 * toFloat64(shares) / sum(toFloat64(shares)) OVER (), 2) AS share_of_volume_pct
FROM
(
    SELECT
        coalesce(nullIf(e.venue_name, ''), concat('Venue ', toString(t.exchange))) AS venue,
        sum(t.size)                                                                AS shares
    FROM global_markets.stocks_trades AS t
    LEFT JOIN
    (
        SELECT
            toString(id) AS exchange_id,
            any(name)    AS venue_name
        FROM global_markets.stocks_exchanges
        WHERE asset_class = 'stocks'
        GROUP BY exchange_id
    ) AS e ON e.exchange_id = toString(t.exchange)
    WHERE t.ticker = 'AAPL'
      AND t.sip_timestamp >= toDateTime('2026-06-16 08:00:00', 'UTC')
      AND t.sip_timestamp <  toDateTime('2026-06-17 01:00:00', 'UTC')
    GROUP BY venue
)
ORDER BY share_of_volume_pct DESC
LIMIT 12
$