STRASMORE/EXPLORE 2,358 QUERIES

aapl_open_minute_trace

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-18, from nasdaq-opening-cross-explained.

as of series 21×4read in context →
aapl_open_minute_trace — 21 rows by 4 columns, computed from US exchange, SIP and OPRA data.
sessionopening_minute_pctclosing_minute_pctsession_label
2026-08-032.523.47August 3
2026-08-042.424.5August 4
2026-08-052.731.57August 5
2026-08-062.911.24August 6
2026-08-073.50.19August 7
2026-08-104.393.23August 10
2026-08-112.82.09August 11
2026-08-122.010.52August 12
2026-08-133.91.18August 13
2026-08-142.474.31August 14
2026-08-172.783.62August 17
2026-08-182.290.82August 18
2026-08-192.027.08August 19
2026-08-202.234.09August 20
2026-08-2111.771.27August 21
2026-08-2439.7August 24
2026-08-253.551.73August 25
2026-08-262.342.06August 26
2026-08-273.351.76August 27
2026-08-282.041.74August 28
2026-08-312.692.82August 31
Rows × columns
21 × 4
Period covered
to
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 aapl_open_minute_trace, derived from the stored result.
ColumnTypeRangeNotes
session date 2026-08-03 to 2026-08-31
opening_minute_pct number 2.01 to 11.77 percent
closing_minute_pct number 0.19 to 9.7 percent
session_label text 21 distinct values (August 10, August 11, August 12…)

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(d)                                                AS session,
    round(100 * sumIf(v, et_min = 570) / sum(v), 2)            AS opening_minute_pct,
    round(100 * sumIf(v, et_min = 960) / sum(v), 2)            AS closing_minute_pct,
    concat(monthName(d), ' ', toString(toDayOfMonth(d)))       AS session_label
FROM
(
    SELECT
        toDate(toTimeZone(window_start, 'America/New_York'))        AS d,
        toHour(toTimeZone(window_start, 'America/New_York')) * 60
          + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_min,
        toFloat64(volume)                                           AS v
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'AAPL'
      AND window_start >= '2026-08-03 00:00:00'
      AND window_start <  '2026-09-01 00:00:00'
)
WHERE d BETWEEN '2026-08-03' AND '2026-08-31'
  AND et_min BETWEEN 570 AND 960
GROUP BY d
HAVING sum(v) > 0
ORDER BY d

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 analysisnasdaq-opening-cross-explained
open_conditions ranking 14×3 open_minute_share ranking 5×4 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 monthly series 241×4 2s10s spread, monthly average: last 20 years series 240×2 rolling_7y series 193×5 See all 2,358 queries →