H1 2026 listings by primary exchange: count, dollars, and the unit-offering 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-07-26, from IPO Market 2026: The First Half in Numbers.
| exchange | listings | raised_bn_usd | unit_offerings |
|---|---|---|---|
| Nasdaq | 130 | 116.7 | 77 |
| NYSE | 44 | 16.4 | 22 |
| NYSE American | 9 | 0.5 | 2 |
| OTC markets | 1 | 0 | 0 |
- Rows × columns
- 4 × 4
- 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 |
|---|---|---|---|
exchange |
text | 4 distinct values (NYSE, NYSE American, Nasdaq…) | |
listings |
number | 1 to 130 | |
raised_bn_usd |
number | 0 to 116.7 | US dollars |
unit_offerings |
number | 0 to 77 |
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 multiIf(primary_exchange = 'XNAS', 'Nasdaq',
primary_exchange = 'XNYS', 'NYSE',
primary_exchange = 'XASE', 'NYSE American',
'OTC markets') AS exchange,
count() AS listings,
round(sum(total_offer_size) / 1e9, 1) AS raised_bn_usd,
countIf(security_type IN ('SP', 'UNIT')) AS unit_offerings
FROM global_markets.stocks_ipos
WHERE ipo_status = 'history'
AND currency_code = 'USD'
AND listing_date >= '2026-01-01'
AND listing_date <= '2026-06-30'
GROUP BY exchange
ORDER BY listings DESC
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 analysisIPO Market 2026: The First Half in Numbers
The eight largest US listings of H1 2026 by offer size
ranking 8×3
→
First-half listings by year, 2019-2026: like-for-like January-June counts and dollars
ranking 8×3
→
US-dollar listings by month, H1 2026: count and dollars raised
series 6×3
→
H1 2026 listings by security type: count, dollars, and the typical deal in each bucket
table 3×5
→
H1 2026 listings vs their offer price: last regular-hours close of July 6-10, by type
table 3×7
→
H1 2026 listings: totals, the typical deal, and the concentration receipts
scalar 1×11
→
See all 2,173 queries →