STRASMORE/EXPLORE 2,469 QUERIES

The single busiest clock minute of the month, October 2024

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-08, from When Did the US Stock Market Start? 1792.

as of ranking 5×3read in context →
The single busiest clock minute of the month, October 2024 — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolbusiest_clock_etbusiest_minute_pct
KO15:594.18
JNJ15:594.12
MSFT09:303.99
SPY15:593.79
AAPL09:303.72
Rows × columns
5 × 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 The single busiest clock minute of the month, October 2024, derived from the stored result.
ColumnTypeRangeNotes
symbol text 5 distinct values (AAPL, JNJ, KO…)
busiest_clock_et text 2 distinct values (09:30, 15:59)
busiest_minute_pct number 3.72 to 4.18 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
    symbol,
    argMax(clock_et, minute_volume)                          AS busiest_clock_et,
    round(100 * max(minute_volume) / sum(minute_volume), 2)  AS busiest_minute_pct
FROM
(
    SELECT
        ticker                                                                 AS symbol,
        formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i')  AS clock_et,
        toFloat64(sum(volume))                                                 AS minute_volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('SPY', 'AAPL', 'MSFT', 'KO', 'JNJ')
      AND window_start >= '2024-10-01'
      AND window_start <  '2024-11-01'
    GROUP BY symbol, clock_et
)
GROUP BY symbol
ORDER BY busiest_minute_pct DESC
⌘/Ctrl + Enter
More from this analysisWhen Did the US Stock Market Start? 1792
Weekdays with no US equity session, 2014 through 2023 ranking 10×2 Where SPY volume lands inside the day, 30 minute buckets, October 2024 series 32×3 Trading sessions by day of the week, calendar year 2019 series 7×3 Listed stocks closing under $1 on the latest session, by price band ranking 5×4 How long the sub-$1 names have already been there: consecutive sessions closing under $1 ranking 4×3 Listed stocks closing under $1, session by session, trailing five months series 103×3 See all 2,469 queries →