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.
| ticker | debut_session | first_print_et | minutes_after_open |
|---|---|---|---|
| SKHYV | 2026-07-10 | 11:34 | 124 |
| INIO | 2026-06-04 | 12:28 | 178 |
| JMKE | 2026-07-30 | 13:04 | 214 |
| QNT | 2026-06-04 | 13:34 | 244 |
| DPC | 2026-06-25 | 12:29 | 179 |
| TBCVU | 2026-08-13 | 10:13 | 43 |
| EROC | 2026-06-10 | 12:35 | 185 |
| BSP | 2026-07-01 | 12:41 | 191 |
| AADX | 2026-06-03 | 12:25 | 175 |
| LFTO | 2026-06-04 | 11:28 | 118 |
- 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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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
Travaillez ces données dans votre assistant IA
S'ouvre prêt à interroger, avec les données de cette page. Gratuit, sans compte.