STRASMORE/EXPLORE 2,170 QUERIES

Day 180 counted from the pricing date: nine US listings

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-08-03, from How to Find a Lockup Expiration Date.

as of series 9×6read in context →
Day 180 counted from the pricing date: nine US listings — 9 rows by 6 columns, computed from US exchange, SIP and OPRA data.
tickerpricing_date_labelday_180_labelday_180_weekdaymarket_opensnext_open_session_label
DASHDec 8, 2020Jun 6, 2021Sunday122Jun 7, 2021
RIVNNov 9, 2021May 8, 2022Sunday123May 9, 2022
BIRKOct 10, 2023Apr 7, 2024Sunday122Apr 8, 2024
LYFTMar 28, 2019Sep 24, 2019Tuesday124Sep 24, 2019
UBERMay 9, 2019Nov 5, 2019Tuesday125Nov 5, 2019
ABNBDec 9, 2020Jun 7, 2021Monday122Jun 7, 2021
HOODJul 28, 2021Jan 24, 2022Monday124Jan 24, 2022
CAVAJun 14, 2023Dec 11, 2023Monday124Dec 11, 2023
RDDTMar 20, 2024Sep 16, 2024Monday123Sep 16, 2024
Rows × columns
9 × 6
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Day 180 counted from the pricing date: nine US listings, derived from the stored result.
ColumnTypeRangeNotes
ticker text 9 distinct values (ABNB, BIRK, CAVA…)
pricing_date_label text 9 distinct values (Dec 8, 2020, Dec 9, 2020, Jul 28, 2021…)
day_180_label text 9 distinct values (Apr 7, 2024, Dec 11, 2023, Jan 24, 2022…)
day_180_weekday date Monday to Tuesday
market_opens number 122 to 125
next_open_session_label text 8 distinct values (Apr 8, 2024, Dec 11, 2023, Jan 24, 2022…)

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 ipos AS (
    SELECT tupleElement(pair, 1) AS ticker,
           toDate(tupleElement(pair, 2)) AS pricing_date
    FROM (
        SELECT arrayJoin([('LYFT', '2019-03-28'), ('UBER', '2019-05-09'),
                          ('DASH', '2020-12-08'), ('ABNB', '2020-12-09'),
                          ('HOOD', '2021-07-28'), ('RIVN', '2021-11-09'),
                          ('CAVA', '2023-06-14'), ('BIRK', '2023-10-10'),
                          ('RDDT', '2024-03-20')]) AS pair
    )
),
sessions AS (
    SELECT DISTINCT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= toDateTime('2019-03-01 00:00:00')
      AND window_start < toDateTime('2026-08-01 00:00:00')
)
SELECT i.ticker AS ticker,
       formatDateTimeInJodaSyntax(i.pricing_date, 'MMM d, yyyy') AS pricing_date_label,
       formatDateTimeInJodaSyntax(addDays(i.pricing_date, 180), 'MMM d, yyyy') AS day_180_label,
       formatDateTime(addDays(i.pricing_date, 180), '%W') AS day_180_weekday,
       countIf(s.session_date > i.pricing_date
               AND s.session_date <= addDays(i.pricing_date, 180)) AS market_opens,
       formatDateTimeInJodaSyntax(
           minIf(s.session_date, s.session_date >= addDays(i.pricing_date, 180)),
           'MMM d, yyyy') AS next_open_session_label
FROM ipos AS i
CROSS JOIN sessions AS s
GROUP BY i.ticker, i.pricing_date
ORDER BY (minIf(s.session_date, s.session_date >= addDays(i.pricing_date, 180))
          > addDays(i.pricing_date, 180)) DESC,
         i.pricing_date ASC

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 analysisHow to Find a Lockup Expiration Date
Weekly average daily volume: Reddit's first year of trading, March 2024 to March 2025 series 53×2 Volume in the four weeks around day 180 vs the weeks before it: nine US listings ranking 9×4 Reddit share volume by window, counted in days from the March 20, 2024 pricing date ranking 5×3 One US listing traced against a flat line at 1.5x its offer price series 82×3 Form 8-K disclosures mentioning a lockup, by month series 17×4 Share of US listings trading at 1.5x their offer price, by day since listing ranking 19×2 See all 2,170 queries →