Average shares per print by month, September 2025 through July 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.
| month | month_label | aapl_shares_per_print | msft_shares_per_print | ko_shares_per_print |
|---|---|---|---|---|
| 2025-09-01 | Sep 2025 | 91.4 | 49.4 | 115 |
| 2025-10-01 | Oct 2025 | 72 | 39.9 | 66 |
| 2025-11-01 | Nov 2025 | 68.6 | 39.3 | 71.9 |
| 2025-12-01 | Dec 2025 | 74.5 | 45.6 | 74.7 |
| 2026-01-01 | Jan 2026 | 71.5 | 41.4 | 74.1 |
| 2026-02-01 | Feb 2026 | 70.4 | 44.8 | 72.4 |
| 2026-03-01 | Mar 2026 | 64.8 | 45.2 | 66.5 |
| 2026-04-01 | Apr 2026 | 68.2 | 43 | 58.6 |
| 2026-05-01 | May 2026 | 64.1 | 49.2 | 57.7 |
| 2026-06-01 | Jun 2026 | 67.9 | 53.2 | 71.5 |
| 2026-07-01 | Jul 2026 | 54.9 | 48.6 | 61.8 |
- Rows × columns
- 11 × 5
- Period covered
- to
- 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 |
|---|---|---|---|
month |
date | 2025-09-01 to 2026-07-01 | |
month_label |
text | 11 distinct values (Apr 2026, Dec 2025, Feb 2026…) | |
aapl_shares_per_print |
number | 54.9 to 91.4 | count |
msft_shares_per_print |
number | 39.3 to 53.2 | count |
ko_shares_per_print |
number | 57.7 to 115 | count |
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
toString(m) AS month,
formatDateTime(m, '%b %Y') AS month_label,
round(sumIf(vol, sym = 'AAPL') / sumIf(trades, sym = 'AAPL'), 1) AS aapl_shares_per_print,
round(sumIf(vol, sym = 'MSFT') / sumIf(trades, sym = 'MSFT'), 1) AS msft_shares_per_print,
round(sumIf(vol, sym = 'KO') / sumIf(trades, sym = 'KO'), 1) AS ko_shares_per_print
FROM
(
SELECT
toStartOfMonth(date) AS m,
ticker AS sym,
toFloat64(volume) AS vol,
transactions AS trades
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'KO')
AND date >= '2025-09-01'
AND date < '2026-08-01'
)
GROUP BY m
ORDER BY m
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
AAPL average print size across the February 2026 boundary
series 19×4
→
Small AAPL print sizes: five sessions in January 2026 against five in July 2026
table 26×3
→
Odd lots, round lots and sub-one-share prints across six names, July 8 to 10, 2026
ranking 6×4
→
The same twelve prints, ranked by venue clock and by tape clock
table 12×7
→
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
→
See all 2,170 queries →