Coca-Cola closing print as a share of session volume, by month
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-22, from NYSE Parity and D-Quotes: How Fills Allocate.
| month | closing_print_pct |
|---|---|
| 2024-08 | 2.5 |
| 2024-09 | 7.1 |
| 2024-10 | 3.3 |
| 2024-11 | 4 |
| 2024-12 | 2.5 |
| 2025-01 | 1.9 |
| 2025-02 | 1.4 |
| 2025-03 | 5.6 |
| 2025-04 | 1.7 |
| 2025-05 | 2.2 |
| 2025-06 | 3.3 |
| 2025-07 | 2.7 |
| 2025-08 | 2.2 |
| 2025-09 | 2.8 |
| 2025-10 | 1.1 |
| 2025-11 | 3 |
| 2025-12 | 3.6 |
| 2026-01 | 0.7 |
| 2026-02 | 1.7 |
| 2026-03 | 2.8 |
| 2026-04 | 1.5 |
| 2026-05 | 2 |
| 2026-06 | 1.8 |
| 2026-07 | 1.9 |
| 2026-08 | 1.9 |
- Rows × columns
- 25 × 2
- 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 | 2024-08 to 2026-08 | |
closing_print_pct |
number | 0.7 to 7.1 | 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
SELECT
month,
round(100 * sumIf(shares, minute_of_day = 960) / sum(shares), 1) AS closing_print_pct
FROM
(
SELECT
formatDateTime(toTimeZone(window_start, 'America/New_York'), '%Y-%m') AS month,
toFloat64(volume) AS shares,
toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York')) AS minute_of_day
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'KO'
AND window_start >= toStartOfMonth(today() - 730)
AND window_start < today() - 4
)
WHERE minute_of_day >= 570 AND minute_of_day <= 960
GROUP BY month
HAVING sum(shares) > 0
ORDER BY month
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 analysisNYSE Parity and D-Quotes: How Fills Allocate
Average shares per trade, ten household names
ranking 10×3
→
Share of regular-session volume printed in the 16:00 ET minute
ranking 10×3
→
July 6, 2026 in five-minute buckets: the slide, the late climb, and the volume underneath
series 78×3
→
Every SPCX closing cross since the June 12 listing: size, share of the day, and the official close it set
series 15×6
→
Coca-Cola average volume per five-minute bucket, 3:00 p.m. ET to the close, July 2026
series 13×2
→
Entity receipt: the old SPCX tape ends in April 2026, May is silent, SpaceX lists June 12
series 5×6
→
See all 2,170 queries →