STRASMORE/EXPLORE 2,595 QUERIES

New symbols since June 2026: minutes between the 9:30 bell and the first print, ten heaviest first minutes

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-12, from How an IPO's Opening Price Is Set.

as of series 10×4read in context →
New symbols since June 2026: minutes between the 9:30 bell and the first print, ten heaviest first minutes — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerdebut_sessionfirst_print_etminutes_after_open
SKHYV2026-07-1011:34124
INIO2026-06-0412:28178
JMKE2026-07-3013:04214
QNT2026-06-0413:34244
DPC2026-06-2512:29179
TBCVU2026-08-1310:1343
EROC2026-06-1012:35185
BSP2026-07-0112:41191
AADX2026-06-0312:25175
LFTO2026-06-0411:28118
Rows × columns
10 × 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 New symbols since June 2026: minutes between the 9:30 bell and the first print, ten heaviest first minutes, derived from the stored result.
ColumnTypeRangeNotes
ticker text 10 distinct values (AADX, BSP, DPC…)
debut_session date 2026-06-03 to 2026-08-13
first_print_et text 10 distinct values (10:13, 11:28, 11:34…)
minutes_after_open number 43 to 244 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.

SELECT
    ticker,
    toString(toDate(toTimeZone(first_bar, 'America/New_York'))) AS debut_session,
    formatDateTime(toTimeZone(first_bar, 'America/New_York'), '%H:%i') AS first_print_et,
    toHour(toTimeZone(first_bar, 'America/New_York')) * 60
        + toMinute(toTimeZone(first_bar, 'America/New_York')) - 570 AS minutes_after_open
FROM (
    SELECT
        ticker,
        min(window_start) AS first_bar,
        argMin(volume, window_start) AS first_minute_shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= toDateTime('2026-04-01 00:00:00', 'America/New_York')
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
    HAVING first_bar >= toDateTime('2026-06-01 00:00:00', 'America/New_York')
)
WHERE minutes_after_open >= 1
ORDER BY first_minute_shares DESC
LIMIT 10
⌘/Ctrl + Enter

Arbeiten Sie mit diesen Daten in Ihrem KI-Assistenten

Öffnet sich abfragebereit, mit den Daten dieser Seite. Kostenlos, ohne Konto.

More from this analysisHow an IPO's Opening Price Is Set
A seasoned ticker's opening auction: QQQ minute volume around 9:30 ET, September 4, 2026 series 5×2 → Listed stocks closing under $1, session by session, trailing five months series 103×3 → SPCX regular sessions since June 2026: closing price and share volume series 68×4 → Regular-hours session scoreboard: open, close, low, high, volume for every SPCX session since listing series 59×7 → Stock quote spread and depth by session: the four weeks from listing and the trailing three series 33×5 → Where SPY volume lands inside the day, 30 minute buckets, October 2024 series 32×3 → See all 2,595 queries →