STRASMORE/EXPLORE 2,214 QUERIES

new_symbols

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-the-ipo-opening-price-is-set.

as of series 10×4read in context →
new_symbols — 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, 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.

the exact SQL behind every number
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

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 analysishow-the-ipo-opening-price-is-set
regular_open series 5×2 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 2s10s spread, monthly average: last 20 years series 240×2 Growth of $100 in the 1x SOXX vs the 3x SOXL, Jan 2 to Jul 13 2026 series 131×3 SPY underwater curve: month end close against its running peak, 2016 to 2026 series 127×2 The S&P 500's underwater curve: worst drawdown from a prior high, by month series 127×2 See all 2,214 queries →