Venues quoting and printing the same stock in one 15-minute window
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-13, from Self-Match Prevention and Wash Trades.
| ticker | quoting_venues | printing_venues |
|---|---|---|
| AAPL | 16 | 17 |
| MSFT | 16 | 17 |
| NVDA | 16 | 17 |
| JNJ | 14 | 16 |
| SPY | 14 | 17 |
| KO | 11 | 17 |
- Rows × columns
- 6 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 6 distinct values (AAPL, JNJ, KO…) | |
quoting_venues |
number | 11 to 16 | |
printing_venues |
number | 16 to 17 |
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
q.ticker AS ticker,
q.quoting_venues AS quoting_venues,
t.printing_venues AS printing_venues
FROM
(
SELECT
ticker,
countDistinct(bid_exchange) AS quoting_venues
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO', 'JNJ')
AND sip_timestamp >= toDateTime('2026-06-10 14:00:00', 'UTC')
AND sip_timestamp < toDateTime('2026-06-10 14:15:00', 'UTC')
AND bid_price > 0
GROUP BY ticker
) AS q
INNER JOIN
(
SELECT
ticker,
countDistinct(exchange) AS printing_venues
FROM global_markets.stocks_trades
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO', 'JNJ')
AND sip_timestamp >= toDateTime('2026-06-10 14:00:00', 'UTC')
AND sip_timestamp < toDateTime('2026-06-10 14:15:00', 'UTC')
GROUP BY ticker
) AS t ON t.ticker = q.ticker
ORDER BY quoting_venues DESC, ticker
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 analysisSelf-Match Prevention and Wash Trades
Trade condition flags on one full session
ranking 10×3
→
Prints per 15-minute bucket, one full session
series 64×2
→
Option contracts with volume on one underlying, June 2026
series 21×3
→
Average shares per trade print, June 2026
ranking 8×2
→
Quote updates per second and average quoted spread, ten minutes on 17 June 2026
ranking 5×3
→
AAPL option prints by contract count, 17 June 2026
ranking 5×2
→
See all 2,170 queries →