STRASMORE/EXPLORE 2,170 QUERIES

Volume in the four weeks around day 180 vs the weeks before it: 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 ranking 9×4read in context →
Volume in the four weeks around day 180 vs the weeks before it: nine US listings — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerbaseline_volume_mwindow_volume_mvolume_ratio
UBER8.4738.414.53
CAVA1.283.122.44
RIVN16.5428.531.72
HOOD18.0927.681.53
ABNB7.558.461.12
BIRK0.520.551.05
RDDT3.733.921.05
DASH3.593.570.99
LYFT6.445.970.93
Rows × columns
9 × 4
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 Volume in the four weeks around day 180 vs the weeks before it: nine US listings, derived from the stored result.
ColumnTypeRangeNotes
ticker text 9 distinct values (ABNB, BIRK, CAVA…)
baseline_volume_m number 0.52 to 18.09 count
window_volume_m number 0.55 to 38.41 count
volume_ratio number 0.93 to 4.53 count

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
    )
),
daily AS (
    SELECT ticker,
           toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
           toFloat64(sum(volume)) AS shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('LYFT', 'UBER', 'DASH', 'ABNB', 'HOOD', 'RIVN', 'CAVA', 'BIRK', 'RDDT')
      AND window_start >= toDateTime('2019-07-01 00:00:00')
      AND window_start < toDateTime('2024-11-01 00:00:00')
    GROUP BY ticker, session_date
)
SELECT d.ticker AS ticker,
       round(avgIf(d.shares, dateDiff('day', i.pricing_date, d.session_date) BETWEEN 120 AND 170) / 1e6, 2) AS baseline_volume_m,
       round(avgIf(d.shares, dateDiff('day', i.pricing_date, d.session_date) BETWEEN 171 AND 200) / 1e6, 2) AS window_volume_m,
       round(avgIf(d.shares, dateDiff('day', i.pricing_date, d.session_date) BETWEEN 171 AND 200)
             / avgIf(d.shares, dateDiff('day', i.pricing_date, d.session_date) BETWEEN 120 AND 170), 2) AS volume_ratio
FROM daily AS d
INNER JOIN ipos AS i ON d.ticker = i.ticker
GROUP BY d.ticker
HAVING countIf(dateDiff('day', i.pricing_date, d.session_date) BETWEEN 120 AND 170) >= 20
   AND countIf(dateDiff('day', i.pricing_date, d.session_date) BETWEEN 171 AND 200) >= 10
ORDER BY volume_ratio 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 analysisHow to Find a Lockup Expiration Date
Reddit share volume by window, counted in days from the March 20, 2024 pricing date ranking 5×3 Weekly average daily volume: Reddit's first year of trading, March 2024 to March 2025 series 53×2 Day 180 counted from the pricing date: nine US listings series 9×6 Share of US listings trading at 1.5x their offer price, by day since listing ranking 19×2 US listings clearing 1.5x the offer price on the first close, by listing year ranking 8×4 IPO registration and prospectus filings since 2022 ranking 7×3 See all 2,170 queries →