The listing record + the SEC filing trail behind the debut
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 SK Hynix's Nasdaq Debut, Measured.
issuer
SK Hynix Inc
listed
2026-07-10
exchange mic
XNAS
security
ADR
recorded issue price
158.14
raised bn
28.1
ads offered m
177.9
shares x price bn
28.1
larger 2026 raises
1
f1 registrations
2
f6 adr registrations
1
- Rows × columns
- 1 × 11
- Period covered
- 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 |
|---|---|---|---|
issuer |
text | 1 distinct value (SK Hynix Inc) | |
listed |
date | 2026-07-10 | |
exchange_mic |
text | 1 distinct value (XNAS) | |
security |
text | 1 distinct value (ADR) | |
recorded_issue_price |
number | every row is 158.14 | US dollars |
raised_bn |
number | every row is 28.1 | |
ads_offered_m |
number | every row is 177.9 | |
shares_x_price_bn |
number | every row is 28.1 | US dollars |
larger_2026_raises |
number | every row is 1 | |
f1_registrations |
number | every row is 2 | |
f6_adr_registrations |
number | every row is 1 |
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
WITH sk AS (
SELECT
any(issuer_name) AS issuer,
toString(any(listing_date)) AS listed,
any(primary_exchange) AS exchange_mic,
any(security_description) AS security,
round(toFloat64(any(final_issue_price)), 2) AS px,
round(any(total_offer_size) / 1e9, 1) AS raised,
round(any(max_shares_offered) / 1e6, 1) AS ads_m,
round(any(max_shares_offered) * toFloat64(any(final_issue_price)) / 1e9, 1) AS math_bn,
any(total_offer_size) AS raw_size
FROM global_markets.stocks_ipos
WHERE issuer_name = 'SK Hynix Inc' AND listing_date = '2026-07-10'
)
SELECT
issuer,
listed,
exchange_mic,
security,
px AS recorded_issue_price,
raised AS raised_bn,
ads_m AS ads_offered_m,
math_bn AS shares_x_price_bn,
(SELECT count() FROM global_markets.stocks_ipos
WHERE listing_date >= '2026-01-01' AND listing_date <= '2026-07-10'
AND total_offer_size > (SELECT raw_size FROM sk)) AS larger_2026_raises,
(SELECT countIf(form_type IN ('F-1', 'F-1/A')) FROM global_markets.stocks_sec_edgar_index
WHERE issuer_name ILIKE '%hynix%' AND filing_date >= '2026-05-01' AND filing_date <= '2026-07-10') AS f1_registrations,
(SELECT countIf(form_type = 'F-6') FROM global_markets.stocks_sec_edgar_index
WHERE issuer_name ILIKE '%hynix%' AND filing_date >= '2026-05-01' AND filing_date <= '2026-07-10') AS f6_adr_registrations
FROM sk
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 analysisSK Hynix's Nasdaq Debut, Measured
SKHYV day-one off-exchange short volume, with the file-coverage probe
scalar 1×5
→
The options tape: SKHYV's day-one silence vs the comparables' clock
scalar 1×3
→
Debut-day anatomy: the 11:34 IPO cross, day volume, venue split, and the closing cross
scalar 1×7
→
SKHYV's first session: July 10, 2026, receipted
scalar 1×9
→
2026 US listings ranked by capital raised (top 8, $B)
ranking 8×4
→
Debut-day quoted spread by hour: the seasoning process, hour zero
ranking 5×4
→
See all 2,170 queries →