STRASMORE/EXPLORE 2,433 QUERIES

Share of prints that landed on a sub-penny price

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-07, from The Sub-Penny Rule and Price Improvement.

as of ranking 7×3read in context →
Share of prints that landed on a sub-penny price — 7 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickersubpenny_trade_pctsubpenny_volume_pct
KO46.5624.88
T39.0546.58
BAC37.8840.28
NVDA36.7728.51
F36.4258.03
AAPL36.0822.84
MSFT31.8725.44
Rows × columns
7 × 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 Share of prints that landed on a sub-penny price, derived from the stored result.
ColumnTypeRangeNotes
ticker text 7 distinct values (AAPL, BAC, F…)
subpenny_trade_pct number 31.87 to 46.56 percent
subpenny_volume_pct number 22.84 to 58.03 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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    ticker,
    round(100 * countIf(toUInt64(round(toFloat64(price) * 10000)) % 100 != 0) / count(), 2)       AS subpenny_trade_pct,
    round(100 * sumIf(size, toUInt64(round(toFloat64(price) * 10000)) % 100 != 0) / sum(size), 2) AS subpenny_volume_pct
FROM global_markets.stocks_trades
WHERE ticker IN ('MSFT', 'AAPL', 'NVDA', 'KO', 'BAC', 'T', 'F')
  AND sip_timestamp >= '2026-06-17 14:00:00'
  AND sip_timestamp <  '2026-06-17 14:15:00'
  AND price > 0
GROUP BY ticker
ORDER BY subpenny_trade_pct DESC
⌘/Ctrl + Enter
More from this analysisThe Sub-Penny Rule and Price Improvement
What one cent is worth, by share price band ranking 8×3 AAPL sub-penny print rate by trade size, 17 June 2026 ranking 5×3 The penny tick and the quoted gap, in basis points table 7×5 Average quoted spread and time on the penny floor, pinned session ranking 8×3 What one cent is worth, as a share of the closing price ranking 8×3 Share of the session spent at each quoted spread, three names ranking 5×4 See all 2,433 queries →