How an IPO's Opening Price Is Set
How an IPO's opening price is set on Nasdaq and the NYSE, from the display-only period to the launch call, and why the first print can land hours after 9:30.
How is an IPO's opening price set? It is set by an auction on the listing exchange, held after the offer price is already fixed, in which every order entered before the stock is released trades at the single price that clears the most shares. That auction rarely fires at 9:30 a.m. On Nasdaq it cannot begin until the lead underwriter tells the exchange it is ready. On the NYSE a human market maker opens the stock once the order book is balanced. The offer price is what allocation holders paid the night before, the opening print is the first price the public can trade at, and the gap between them is the "pop".
Offer price, opening print, and the pop
The offer price, also called the IPO price or issue price, is negotiated between the company and its underwriters the evening before the first session, once the roadshow order book has closed. Investors who received an allocation buy at this price and keep it no matter where the stock opens.
The opening print is the first trade on the exchange. It comes out of the opening auction described below, every order in that auction fills at it, and it is the first price available to anyone without an allocation.
The pop is the gap between the two, quoted as a percentage of the offer price. It belongs to allocation holders, who bought at the offer price and can sell at or after the opening print.
Why an IPO's first trade comes hours after 9:30
Every other Nasdaq stock opens in the regular 9:30 opening auction. A new listing does not. The regular auction shows up on any seasoned ticker's tape as one heavy minute bar at 9:30. On September 4, 2026, QQQ's 9:30 bar carried 431672.159791 shares, against 11113.507785 in the minute before it.
| et_time | shares |
|---|---|
| 09:28 | 10650.149956 |
| 09:29 | 11113.507785 |
| 09:30 | 431672.159791 |
| 09:31 | 187247.262979 |
| 09:32 | 138608.895475 |
The exact SQL behind every number
SELECT
formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_time,
sum(volume) AS shares
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'QQQ'
AND window_start >= toDateTime('2026-09-04 09:28:00', 'America/New_York')
AND window_start < toDateTime('2026-09-04 09:33:00', 'America/New_York')
GROUP BY et_time
ORDER BY et_timeA new listing, under Nasdaq Rule 4120(c)(8), sits in a trading halt from the moment it lists, and the halt ends only when a fixed sequence has run its course. Orders are accepted from 4:00 a.m., but nothing can execute. A first print late in the morning, or after lunch, is ordinary. The panel below takes every symbol that had no minute bar in April or May 2026 and printed its first one on or after June 1, keeps the ten with the heaviest first minute, and measures how long after the 9:30 bell that bar printed. SpaceX's listing, covered separately below, is left out. The heaviest first minute among the rest belongs to SKHYV, whose first bar printed 124 minutes after 9:30, at 11:34 ET on 2026-07-10.
| 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 |
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 10How is an IPO's opening price set on Nasdaq?
Nasdaq opens every new issue through the IPO Cross, a variant of its halt cross that the exchange describes as an open auction in which any investor can enter orders and take part in price discovery.
The display-only period
Nasdaq begins accepting quotes and orders in the new symbol and publishing an indicative clearing price. Orders can be entered and cancelled; none can execute. The June 2006 IPO Cross FAQ puts this quote-only period at approximately 15 minutes. A December 2017 rule change shortened it to 10 minutes, the version Nasdaq's IPO Cross fact sheet describes.
Five-minute extensions and the pre-launch period
The FAQ spells out the original circuit breakers:
"NASDAQ will systematically extend the quote-only period for the IPO for five minutes if there is a market order imbalance at the time of the IPO pricing or if there is excessive volatility leading up to the IPO Cross. Volatility will be defined as a movement of 10% or 50 cents (whichever is greater) based on the price immediately prior to the cross and the dissemination 15 seconds prior to the cross." (Nasdaq, Frequently Asked Questions: The NASDAQ IPO Cross, June 2006)
Rule changes in 2013 and 2014 folded those fixed extensions into an open-ended pre-launch period that begins the moment the display-only period ends. The stock is released only when all of the following hold at once:
- The lead underwriter has told Nasdaq the security is ready to trade and has approved the expected price the system shows it.
- Every market order in the book will execute in the cross.
- The price the cross computes lands within a band the underwriter chose in advance around that expected price; the widest band the rule permits is $0.50.
If any test fails, the pre-launch period simply continues.
The launch: the underwriter's call and the Nasdaq IPO Officer
The fact sheet is explicit about who pulls the trigger:
"The IPO Cross process begins once the lead underwriting firm communicates to Nasdaq that they are ready to proceed with the opening of the new issue. The Nasdaq IPO Officer will then proceed to open the security for trading." (Nasdaq, The Nasdaq IPO Cross fact sheet, 2018)
The system finds the price that executes the most shares, breaking any tie by picking the price closest to the issue price. It publishes the Nasdaq Official Opening Price and sends one bulk execution to the tape, and continuous trading starts the instant that print hits.
How the IPO imbalance feed differs from the daily 9:28 NOII
Both crosses publish a Net Order Imbalance Indicator (NOII): the price at which the book would clear right now, the shares paired at that price, the unmatched shares, and the side those unmatched shares sit on.
- Timing. The daily opening NOII starts at 9:28 a.m. and stops two minutes later when the cross fires on schedule. The IPO NOII publishes every second from the start of the display-only period until release, and the cross fires only when a person says so.
- Reference. The daily indicator has yesterday's close to lean on. The IPO indicator has only the issue price, the same anchor the cross's tie-break uses.
- Blanks. Under Rule 4753 the indicator omits the Current Reference Price while a market order imbalance exists. A blank reference price during an IPO's quote-only period is itself the message: unmatched market orders are in the book, and that one condition blocks the release.
How does the NYSE set an IPO's opening price?
The NYSE has no display-only clock. Each listed stock is assigned a Designated Market Maker (DMM), a member firm responsible for opening it, and for an IPO the DMM runs the auction manually on the trading floor under NYSE Rule 7.35A. The lead underwriter's information reaches the DMM through a floor broker. The DMM publishes one or more pre-opening indications, a price range for where it expects the opening print to land given the orders on the book. Alongside it the exchange publishes its auction imbalance information. As orders arrive on both sides the ranges narrow, and the DMM opens the stock once the book reaches equilibrium.
Two 2026 debuts: SpaceX and SK hynix
SpaceX's June 2026 listing on Nasdaq, the largest IPO on record, ran the sequence above end to end: priced the evening before, orders from 4:00 a.m., a display-only period, a pre-launch period, the underwriter's call, one bulk print. It opened above its offer price. The first-print time and price, and how the stock traded over the following weeks, are on SpaceX's first month on Nasdaq.
SK hynix's July 2026 Nasdaq debut went through the same cross with one difference in what participants could see. The company's common shares already trade in Seoul, so the indicative clearing price in the NOII could be measured against a live outside reference: the Korean price converted to dollars and divided by the ADR ratio. SK hynix's Nasdaq debut has the prints. The next structural dates after the open are the quiet period and the point at which options begin listing.
FAQ
Why do IPOs open later than 9:30 a.m.?
A new listing is held in a trading halt while the exchange runs its IPO auction. On Nasdaq that is a 10-minute display-only period followed by a pre-launch period with no maximum length, and the stock is released only when the lead underwriter says it is ready and the book passes the imbalance and price tests. On the NYSE the DMM opens the stock when its indications have narrowed and the book is balanced.
What is the difference between the IPO price and the opening price?
The IPO price, or offer price, is set by the company and its underwriters the evening before trading and is paid by investors who received allocations. The opening price is the first trade on the exchange, set by the opening auction.
Who gets the IPO pop?
Allocation holders, who bought at the offer price. A buyer whose order fills in the opening auction pays the opening print, so the pop has already happened before that trade.
The first print for every listing covered here, and the minute-by-minute tape that follows the release, is one question away on the Strasmore terminal.