STRASMORE/EXPLORE 2,648 QUERIES

close_minute

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-09-26, from us-market-volume-by-hour-beijing-time.

as of ranking 7×4read in context →
close_minute — 7 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlast_30m_millionclose_minute_millionclose_to_30m_ratio
NVDA13.692.010.15
AAPL5.431.160.21
MSFT3.940.810.2
AMZN5.410.660.12
SPY9.140.30.03
KO2.240.190.09
QQQ5.460.170.03
Rows × columns
7 × 4
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 close_minute, derived from the stored result.
ColumnTypeRangeNotes
ticker text 7 distinct values (AAPL, AMZN, KO…)
last_30m_million number 2.24 to 13.69
close_minute_million number 0.17 to 2.01 US dollars
close_to_30m_ratio number 0.03 to 0.21 US dollars

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.

WITH bars AS
(
    SELECT
        ticker,
        volume,
        toTimeZone(window_start, 'America/New_York') AS et,
        toDate(et)                                   AS session_date,
        toHour(et) * 60 + toMinute(et)               AS et_min
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('SPY', 'QQQ', 'AAPL', 'MSFT', 'NVDA', 'AMZN', 'KO')
      AND window_start >= toDateTime('2026-04-01 04:00:00', 'UTC')
      AND window_start <  toDateTime('2026-07-01 04:00:00', 'UTC')
      AND et_min >= 930
      AND et_min <= 960
)
SELECT
    ticker,
    round(toFloat64(sumIf(volume, et_min >= 930 AND et_min < 960)) / countDistinct(session_date) / 1e6, 2) AS last_30m_million,
    round(toFloat64(sumIf(volume, et_min = 960)) / countDistinct(session_date) / 1e6, 2)                   AS close_minute_million,
    round(toFloat64(sumIf(volume, et_min = 960))
          / toFloat64(sumIf(volume, et_min >= 930 AND et_min < 960)), 2)                                  AS close_to_30m_ratio
FROM bars
GROUP BY ticker
ORDER BY close_minute_million DESC
⌘/Ctrl + Enter

在你的 AI 助手中使用这些数据

打开即可查询,已带上本页数据。免费,无需账号。