Odd lots, round lots and sub-one-share prints across six names, July 8 to 10, 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-12, from How Fractional Shares Hit the Tape.
| ticker | odd_lot_pct | round_lot_pct | sub_one_share_prints |
|---|---|---|---|
| SPY | 74.1 | 14.6 | 211801 |
| MSFT | 71 | 8.3 | 352269 |
| PG | 62 | 16.8 | 76066 |
| AAPL | 61.8 | 9.2 | 673724 |
| NVDA | 45.8 | 16.5 | 2853147 |
| KO | 39 | 17.7 | 317668 |
- Rows × columns
- 6 × 4
- 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, KO, MSFT…) | |
odd_lot_pct |
number | 39 to 74.1 | percent |
round_lot_pct |
number | 8.3 to 17.7 | percent |
sub_one_share_prints |
number | 76,066 to 2,853,147 |
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
ticker,
round(100 * countIf(toFloat64(size) >= 1 AND toFloat64(size) < 100) / count(), 1) AS odd_lot_pct,
round(100 * countIf(toFloat64(size) >= 100) / count(), 1) AS round_lot_pct,
countIf(toFloat64(size) < 1) AS sub_one_share_prints
FROM global_markets.stocks_trades
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'KO', 'PG', 'SPY')
AND sip_timestamp >= '2026-07-08 00:00:00'
AND sip_timestamp < '2026-07-11 00:00:00'
GROUP BY ticker
ORDER BY odd_lot_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 analysisHow Fractional Shares Hit the Tape
Small AAPL print sizes: five sessions in January 2026 against five in July 2026
table 26×3
→
AAPL average print size across the February 2026 boundary
series 19×4
→
Average shares per print by month, September 2025 through July 2026
series 11×5
→
SIP receive lag by venue, AAPL, 10 June 2026 (microseconds)
ranking 11×4
→
Off exchange AAPL prints by reporting delay, 10 June 2026
ranking 5×3
→
Prints that change bar when you switch clocks, by bar length
ranking 4×3
→
See all 2,170 queries →