Days from listing to a company's first lockup 8-K
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-20, from Early Lockup Release: Triggers and Waivers.
| days_after_listing | companies |
|---|---|
| day 0 to 89 | 3 |
| day 135 to 179 | 1 |
| day 210 or later | 5 |
- Rows × columns
- 3 × 2
- 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 |
|---|---|---|---|
days_after_listing |
text | 3 distinct values | |
companies |
number | 1 to 5 |
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.
WITH
listings AS
(
SELECT
ticker,
min(listing_date) AS listed
FROM global_markets.stocks_ipos
WHERE listing_date >= '2021-01-01'
AND listing_date <= today()
AND ticker != ''
AND ticker NOT IN ('SPCX')
GROUP BY ticker
),
lockup_filings AS
(
SELECT
arrayJoin(tickers) AS ticker,
min(filing_date) AS first_filing
FROM global_markets.stocks_8k_disclosures
WHERE filing_date >= '2021-01-01'
AND (supporting_text ILIKE '%lock-up%' OR supporting_text ILIKE '%lockup%')
GROUP BY ticker
)
SELECT
multiIf(days_after < 90, 'day 0 to 89',
days_after < 135, 'day 90 to 134',
days_after < 180, 'day 135 to 179',
days_after < 210, 'day 180 to 209',
'day 210 or later') AS days_after_listing,
count() AS companies
FROM
(
SELECT dateDiff('day', l.listed, k.first_filing) AS days_after
FROM listings AS l
INNER JOIN lockup_filings AS k ON k.ticker = l.ticker
WHERE k.first_filing >= l.listed
)
GROUP BY days_after_listing
ORDER BY min(days_after)
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.