Strasmore Research
Learn Matt ConnorBy Matt Connor

IPO Quiet Period Rules and Timeline

The IPO quiet period is three separate rules with three separate clocks. Which one restricts the company, and which one holds back analyst ratings.

The IPO quiet period is not one rule. Three separate restrictions travel under that name, they run to different lengths, and only one of them has anything to do with analyst ratings. The phrase appears nowhere in the securities laws, so any page that hands you a single number for it is handing you someone's shorthand.

What is the IPO quiet period?

Three restrictions get compressed into the phrase, each with its own rule, its own length, and its own starting gun.

  1. The pre-effective period. From the point a company is in registration until the SEC declares its registration statement effective, Section 5 of the Securities Act of 1933 limits what the company and its bankers may say about the offering. An offer outside those limits is gun jumping.
  2. The prospectus delivery period. For a set number of days after the offering, dealers trading the new stock owe their buyers a prospectus. Section 4(a)(3) sets the default length and SEC Rule 174 adjusts it by listing status.
  3. The research quiet period. FINRA Rule 2241 bars a firm that underwrote or dealt in the IPO from publishing equity research on the issuer for a fixed number of days after the offering date.

Only the third governs analysts, and its length is not the length of the other two.

What can a company say before its IPO?

While a registration statement is pending, the company may not offer the securities in writing except through the statutory prospectus. Section 2(a)(10) defines a written offer broadly enough to catch a press release or a conference appearance that talks up the deal. Four safe harbors carve out the ordinary business of running a company:

  • Rule 163A draws a 30-day bright line before the filing, inside which a communication that does not reference the offering is not an offer.
  • Rules 168 and 169 permit regularly released factual business information on the issuer's usual schedule.
  • Rule 134 permits the bare tombstone notice, and Rule 135 a short notice that an offering is planned.
  • Rule 163B lets any issuer test the waters with qualified institutional buyers, a right emerging growth companies got in the JOBS Act of 2012 and the SEC extended to everyone in 2019.

This one has no fixed length. It ends when the SEC declares the registration statement effective, normally the evening before the stock first trades. The gap between the day a deal shows up as announced and the day it first trades is the closest observable measure, and it is a floor: an emerging growth company can submit its registration statement confidentially months earlier.

QueryDays from announced deal to first trade, US listings since January 2025
The exact SQL behind every number
WITH deals AS
(
    SELECT
        ticker,
        max(listing_date)   AS listed_on,
        min(announced_date) AS announced_on
    FROM global_markets.stocks_ipos
    WHERE listing_date >= '2025-01-01'
      AND listing_date <  '2026-06-01'
      AND final_issue_price > 0
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
    HAVING announced_on > toDate('2015-01-01')
       AND announced_on < listed_on
)
SELECT
    multiIf(b = 0, 'under 30 days',
            b = 6, '180 days or more',
            concat(toString(b * 30), ' to ', toString(b * 30 + 29), ' days')) AS bucket,
    deals_in_bucket,
    round(100 * deals_in_bucket / sum(deals_in_bucket) OVER (), 1)            AS share_pct
FROM
(
    SELECT
        least(intDiv(dateDiff('day', announced_on, listed_on), 30), 6) AS b,
        count()                                                        AS deals_in_bucket
    FROM deals
    GROUP BY b
)
ORDER BY b
Run this yourself

Across US listings with a priced offer over the last year and a half, 29% of the deals carrying an announcement date landed in the under 30 days bucket, 148 of them. The last bucket in view, 180 days or more, holds 84. For the year's wider deal flow, see the 2026 first half IPO market.

How long is the quiet period after an IPO?

Two clocks run after the offering, and they are different lengths.

The prospectus delivery period is the older one. Section 4(a)(3)(B) sets 40 days as the default. Section 4(a)(3)(C) stretches it to 90 days when the offering is the issuer's first registered one. Rule 174(d) cuts it to 25 days when the security is listed on a national securities exchange or quoted on Nasdaq. Rule 174(b) removes it altogether when the issuer already filed reports before the registration statement went in. For an ordinary IPO onto the NYSE or Nasdaq the working number is 25 days, counted from the later of the effective date and the first bona fide offering to the public.

The research quiet period is shorter. FINRA Rule 2241(b)(2)(I) stops a member that participated as an underwriter or dealer in an IPO from publishing research on that issuer for 10 calendar days following the offering date, and Rule 2241(b)(2)(J) sets 3 days for managers and co-managers after a follow-on offering. Those numbers replaced the older NASD Rule 2711 regime of 40 days for managers and co-managers and 25 days for the rest of the syndicate, consolidated by FINRA in 2015.

One more layer sits on top. Section 105(d) of the JOBS Act of 2012 bars the SEC and FINRA from restricting research around the IPO of an emerging growth company: an issuer under $1.235 billion of annual revenue in its last fiscal year, the threshold as of 2026, and within five years of listing. Most companies that go public in the US qualify, and for those deals the 10-day rule does not bind at all. Banks commonly wait anyway, by desk convention.

The starting guns differ, which is where the confusion lives. The pre-effective restrictions end at effectiveness, an action the SEC takes. The prospectus delivery period counts from that same effectiveness. The research period counts from the offering date, which for an IPO is the pricing, the night before trading opens.

When do analyst initiations actually land?

The research clock is the one readers watch, and the rule sets only its earliest edge. FINRA Rule 2241 governs when a syndicate desk may publish, not when it will.

For a deal that is not an emerging growth company offering, no bookrunner note can print before the eleventh day after pricing, and a cluster of syndicate initiations on or just past that boundary is the edge of the rule made visible. A firm with no role in the offering carries no such wait, which is what an initiation inside the first 10 days usually turns out to be. For an emerging growth company the 10-day rule does not bind at all, and a desk that stays quiet through it is following convention rather than a requirement.

A tally of initiation headlines blurs those two groups together: a news feed rarely records which banks ran the book. The rule fixes one edge of the schedule and desk practice fills in the rest.

The IPO timeline in real dates

Put the clocks on a calendar and the first six months of a new listing get concrete. The panel below takes the largest US listings by offer size over the same window and dates each boundary. Read the last column as arithmetic: it applies the standard 180-day lockup convention, while a signed agreement can run a different term and often carries early lockup release and waiver triggers. For one company's real date, see how to find a lockup expiration date.

QueryThe three clocks, dated, for the largest US listings since January 2025
The exact SQL behind every number
SELECT
    issuer,
    ticker,
    formatDateTime(listed_on, '%b %e, %Y')               AS first_trade,
    formatDateTime(addDays(listed_on, 10), '%b %e, %Y')  AS research_quiet_ends,
    formatDateTime(addDays(listed_on, 25), '%b %e, %Y')  AS prospectus_duty_ends,
    formatDateTime(addDays(listed_on, 180), '%b %e, %Y') AS lockup_180_mark,
    round(toFloat64(offer_size) / 1e6, 0)                AS offer_size_musd
FROM
(
    SELECT
        ticker,
        any(issuer_name)      AS issuer,
        max(listing_date)     AS listed_on,
        max(total_offer_size) AS offer_size
    FROM global_markets.stocks_ipos
    WHERE listing_date >= '2025-01-01'
      AND listing_date <  '2026-08-01'
      AND final_issue_price > 0
      AND total_offer_size > 0
      AND issuer_name != ''
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
)
ORDER BY offer_size DESC
LIMIT 10
Run this yourself

SK Hynix Inc sits at the top of the 10 listed here, at about $28133 million of stock offered. It first traded on Jul 10, 2026. The FINRA research window closed on Jul 20, 2026 and the aftermarket prospectus duty ran out on Aug 4, 2026. The 180-day lockup mark falls on Jan 6, 2027, in a different season entirely.

Quiet period or lockup period?

The two get swapped constantly. They restrict different things.

The quiet period restricts speech: what the company may say while its registration statement is pending, and what the banks that ran the deal may publish afterwards. The lockup restricts selling. Insiders, employees, and pre-IPO holders sign an agreement with the underwriters not to sell for a stated term, commonly 180 days from the date of the prospectus, and nothing in it concerns research.

That difference shows up in what each date does to a stock. An initiation adds information to a name that has very little of it: the first published models and price targets from desks that spent months on the company. A lockup expiry adds supply, freeing shares that could not previously be sold. What the tape looks like around the second one is in do stocks fall after lockup expiration, and the mechanics of the agreement sit in IPO lockup expiration. Shares released then still pass through Rule 144 restricted stock limits for affiliates.

Data notes and filters

The cohort is US listings with a recorded offer price and a listing date between January 2025 and June 2026, deduplicated to one row per ticker. Deals with no announcement date on file drop out of the registration panel, so its sample is smaller. The dates in the timeline panel are arithmetic on the listing date.

FAQ

How long is the quiet period after an IPO?

It depends which one. The aftermarket prospectus delivery period for a company listing on the NYSE or Nasdaq is 25 days from the effective date under Rule 174(d). The FINRA research quiet period is 10 calendar days from the offering date.

Can analysts publish research right after an IPO?

A firm that underwrote or dealt in the deal waits 10 calendar days under FINRA Rule 2241. A firm with no role in the deal is not covered by that rule. For an emerging growth company IPO, Section 105(d) of the JOBS Act removes the restriction outright, though banks commonly still wait.

What is the difference between the IPO quiet period and the lockup period?

The quiet period restricts what can be said. The lockup restricts what can be sold. Quiet periods finish inside the first month or two, while a standard lockup runs 180 days from the date of the prospectus.

Does the quiet period run from pricing or from effectiveness?

Both, depending on the clock. The pre-effective communications restrictions end when the SEC declares the registration statement effective. The prospectus delivery period counts from effectiveness or the first bona fide offering, whichever falls later. The FINRA research period counts from the offering date, which is the pricing.


Every panel here carries the SQL that produced it, so the cohort and the filters are open to inspection. To run the same counts over a different window, ask in plain English on the Strasmore terminal.

#ipo#quiet period#lockup#regulation#analyst ratings