STRASMORE/EXPLORE 2,170 QUERIES

Reddit share volume by window, counted in days from the March 20, 2024 pricing date

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 5×3read in context →
Reddit share volume by window, counted in days from the March 20, 2024 pricing date — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
window_labelavg_daily_volume_mbusiest_session_m
Days 1-3010.1748.53
Days 31-903.5314.98
Days 91-1703.3914.21
Days 171-2003.927.2
Days 201-3656.637.26
Rows × columns
5 × 3
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 Reddit share volume by window, counted in days from the March 20, 2024 pricing date, derived from the stored result.
ColumnTypeRangeNotes
window_label text 5 distinct values (Days 1-30, Days 171-200, Days 201-365…)
avg_daily_volume_m number 3.39 to 10.17 count
busiest_session_m number 7.2 to 48.53

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 daily AS (
    SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
           toFloat64(sum(volume)) AS shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'RDDT'
      AND window_start >= toDateTime('2024-03-21 00:00:00')
      AND window_start < toDateTime('2025-03-21 00:00:00')
    GROUP BY session_date
)
SELECT multiIf(dateDiff('day', toDate('2024-03-20'), session_date) <= 30, 'Days 1-30',
               dateDiff('day', toDate('2024-03-20'), session_date) <= 90, 'Days 31-90',
               dateDiff('day', toDate('2024-03-20'), session_date) <= 170, 'Days 91-170',
               dateDiff('day', toDate('2024-03-20'), session_date) <= 200, 'Days 171-200',
               'Days 201-365') AS window_label,
       round(avg(shares) / 1e6, 2) AS avg_daily_volume_m,
       round(max(shares) / 1e6, 2) AS busiest_session_m
FROM daily
GROUP BY window_label
ORDER BY min(dateDiff('day', toDate('2024-03-20'), session_date))

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
Volume in the four weeks around day 180 vs the weeks before it: nine US listings ranking 9×4 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 →