STRASMORE/EXPLORE 2,358 QUERIES

open_minute_share

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 ranking 5×4read in context →
open_minute_share — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickeropening_minute_pctmidday_minute_pctclosing_minute_pct
AAPL3.250.332.86
AMZN3.720.161.71
MSFT3.620.133.71
NVDA2.830.222.43
TSLA1.690.210.5
Rows × columns
5 × 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 open_minute_share, derived from the stored result.
ColumnTypeRangeNotes
ticker text 5 distinct values (AAPL, AMZN, MSFT…)
opening_minute_pct number 1.69 to 3.72 percent
midday_minute_pct number 0.13 to 0.33 percent
closing_minute_pct number 0.5 to 3.71 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
    ticker,
    round(100 * sumIf(v, et_min = 570) / sum(v), 2) AS opening_minute_pct,
    round(100 * sumIf(v, et_min = 750) / sum(v), 2) AS midday_minute_pct,
    round(100 * sumIf(v, et_min = 960) / sum(v), 2) AS closing_minute_pct
FROM
(
    SELECT
        ticker,
        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 IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'TSLA')
      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 ticker
HAVING sum(v) > 0
ORDER BY ticker

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 aapl_open_minute_trace series 21×4 Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 Share of prints with a placeholder participant timestamp, one March session per year (IBM and MSFT) ranking 24×4 See all 2,358 queries →