STRASMORE/EXPLORE 2,170 QUERIES

Where the minute bars actually are, by ET hour

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-17, from Why Your RSI Differs Between Platforms.

as of ranking 16×3read in context →
Where the minute bars actually are, by ET hour — 16 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_hourbar_countvolume_share_pct
049650.23
058100.06
068270.07
0711440.2
0811900.62
09124414.44
10126014.79
11126011.37
12126010.77
13126010.34
14126010.29
15126021.57
1611564.69
1710010.35
1810170.11
199900.1
Rows × columns
16 × 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 Where the minute bars actually are, by ET hour, derived from the stored result.
ColumnTypeRangeNotes
et_hour text 16 distinct values (04, 05, 06…)
bar_count number 810 to 1,260 count
volume_share_pct number 0.06 to 21.57 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
    et_hour,
    bar_count,
    round(100 * hour_volume / sum(hour_volume) OVER (), 2) AS volume_share_pct
FROM
(
    SELECT
        formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H') AS et_hour,
        count()                                                            AS bar_count,
        toFloat64(sum(volume))                                             AS hour_volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'AAPL'
      AND window_start >= '2026-06-01 04:00:00'
      AND window_start <  '2026-07-01 04:00:00'
    GROUP BY et_hour
)
ORDER BY et_hour

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 analysisWhy Your RSI Differs Between Platforms
One session, one formula, different amounts of warm-up ranking 10×3 RSI(14) on identical closes: Wilder's smoothing against a simple average series 60×4 Two definitions of one daily close, side by side series 21×4 How many of the 390 session minutes each US symbol traded in ranking 10×2 Trade condition codes that restrict high, low, and last ranking 7×3 SPY volume by minute into the close, June 10 2026 series 25×3 See all 2,170 queries →