STRASMORE/EXPLORE 2,170 QUERIES

Sub-penny print share by reporting route, off exchange against lit exchange

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 Midpoint Peg Orders Explained: Half-Cent Fills.

as of ranking 6×3read in context →
Sub-penny print share by reporting route, off exchange against lit exchange — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symboloff_exchange_sub_penny_pcton_exchange_sub_penny_pct
KO86.111.7
NVDA82.76.2
AAPL75.16.7
MSFT62.53.3
SPY61.93.6
BLK53.43.5
Rows × columns
6 × 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 Sub-penny print share by reporting route, off exchange against lit exchange, derived from the stored result.
ColumnTypeRangeNotes
symbol text 6 distinct values (AAPL, BLK, KO…)
off_exchange_sub_penny_pct number 53.4 to 86.1 percent
on_exchange_sub_penny_pct number 3.3 to 11.7 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
WITH
    (
        SELECT groupArray(toString(id))
        FROM global_markets.stocks_exchanges
        WHERE lower(asset_class) = 'stocks'
          AND (lower(type) = 'trf' OR positionCaseInsensitive(name, 'FINRA') > 0)
    ) AS trf_venue_ids
SELECT
    ticker AS symbol,
    round(countIf(has(trf_venue_ids, toString(exchange))
                  AND toUInt64(round(toFloat64(price) * 10000)) % 100 != 0)
          / countIf(has(trf_venue_ids, toString(exchange))) * 100, 1)      AS off_exchange_sub_penny_pct,
    round(countIf(NOT has(trf_venue_ids, toString(exchange))
                  AND toUInt64(round(toFloat64(price) * 10000)) % 100 != 0)
          / countIf(NOT has(trf_venue_ids, toString(exchange))) * 100, 1)  AS on_exchange_sub_penny_pct
FROM global_markets.stocks_trades
WHERE ticker IN ('SPY', 'KO', 'AAPL', 'MSFT', 'NVDA', 'BLK')
  AND sip_timestamp >= '2026-06-17 14:00:00'
  AND sip_timestamp <  '2026-06-17 15:00:00'
  AND price > 0
GROUP BY ticker
HAVING countIf(has(trf_venue_ids, toString(exchange))) > 0
   AND countIf(NOT has(trf_venue_ids, toString(exchange))) > 0
ORDER BY off_exchange_sub_penny_pct 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 analysisMidpoint Peg Orders Explained: Half-Cent Fills
Share of trades printed off the penny grid, 10:00 to 11:00 a.m. ET, June 17 2026 ranking 6×3 Average NBBO spread and the midpoint saving, 10:00 to 11:00 a.m. ET, June 17 2026 ranking 6×3 BLK quoted spread and quote activity by half-hour ET bucket, June 17 2026 series 16×3 AAPL's ten largest overnight gaps down, Jan 2023 to Jun 2026 ranking 10×2 Opening and closing windows as a share of regular-session volume ranking 8×3 Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026) ranking 6×3 See all 2,170 queries →