STRASMORE/EXPLORE 2,170 QUERIES

Which venues sat on the bid side of the quote record, KO on June 16, 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-09, from SIP Feeds vs Direct Exchange Feeds.

as of ranking 17×3read in context →
Which venues sat on the bid side of the quote record, KO on June 16, 2026 — 17 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venuebid_quote_update_countshare_of_updates_pct
Investors Exchange22248056.9
New York Stock Exchange4666711.9
Nasdaq4361911.2
Cboe BZX356409.1
NYSE Arca, Inc.275967.1
Cboe EDGX86512.2
Members Exchange33450.9
MIAX Pearl11330.3
NYSE Texas, Inc.8830.2
Nasdaq Texas, Inc.2890.1
Cboe EDGA2660.1
Cboe BYX2310.1
Nasdaq Philadelphia Exchange LLC1620
NYSE National, Inc.1220
Long-Term Stock Exchange260
24X National Exchange LLC250
NYSE American, LLC20
Rows × columns
17 × 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 sat on the bid side of the quote record, KO on June 16, 2026, derived from the stored result.
ColumnTypeRangeNotes
venue text 17 distinct values
bid_quote_update_count number 2 to 222,480 count
share_of_updates_pct number 0 to 56.9 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.

the exact SQL behind every number
SELECT
    ex.venue_name                                     AS venue,
    qt.bid_updates                                    AS bid_quote_update_count,
    round(100 * qt.bid_updates / qt.total_updates, 1) AS share_of_updates_pct
FROM
(
    SELECT
        toUInt32(bid_exchange) AS venue_id,
        count()                AS bid_updates,
        sum(count()) OVER ()   AS total_updates
    FROM global_markets.cache_stocks_quotes
    WHERE ticker = 'KO'
      AND sip_timestamp >= '2026-06-16 12:00:00'
      AND sip_timestamp <  '2026-06-16 22:00:00'
    GROUP BY venue_id
) AS qt
INNER JOIN
(
    SELECT
        toUInt32(id) AS venue_id,
        name         AS venue_name
    FROM global_markets.stocks_exchanges
    WHERE lower(asset_class) = 'stocks'
) AS ex ON ex.venue_id = qt.venue_id
ORDER BY bid_quote_update_count DESC

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 analysisSIP Feeds vs Direct Exchange Feeds
US equity exchanges that feed the consolidated tape table 18×4 Venue clock to consolidated tape clock, KO quotes on June 16, 2026 series 15×4 Quote update traffic across five household tickers, 10:00 to 11:00 a.m. ET on June 16, 2026 table 5×5 SIP receive lag by venue, AAPL, 10 June 2026 (microseconds) ranking 11×4 How often the last price changes, minute by minute (June 2026) ranking 6×3 The 15 minute gap across six household tickers (June 2026) ranking 6×3 See all 2,170 queries →