STRASMORE/EXPLORE 2,648 QUERIES

Average daily range of recent listings, by age since listing

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 Non-Marginable Securities: Reg T vs House.

as of ranking 5×3read in context →
Average daily range of recent listings, by age since listing — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
days_since_listingavg_daily_range_pctcohort_size
Days 1 to 714.01639
Days 8 to 148.12645
Days 15 to 308.25659
Days 31 to 607.91660
Days 61 to 908.2655
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 Average daily range of recent listings, by age since listing, derived from the stored result.
ColumnTypeRangeNotes
days_since_listing text 5 distinct values
avg_daily_range_pct number 7.91 to 14.01 percent
cohort_size number 639 to 660

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 ipo AS
(
    SELECT
        ticker,
        min(listing_date) AS listed
    FROM global_markets.stocks_ipos
    WHERE listing_date >= today() - 900
      AND listing_date <= today() - 120
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
)
SELECT
    multiIf(age <=  7, 'Days 1 to 7',
            age <= 14, 'Days 8 to 14',
            age <= 30, 'Days 15 to 30',
            age <= 60, 'Days 31 to 60',
                       'Days 61 to 90')  AS days_since_listing,
    round(avg(range_pct), 2)             AS avg_daily_range_pct,
    uniqExact(ticker)                    AS cohort_size
FROM
(
    SELECT
        a.ticker                                             AS ticker,
        dateDiff('day', i.listed, a.date)                    AS age,
        100 * toFloat64(a.high - a.low) / toFloat64(a.close) AS range_pct
    FROM global_markets.stocks_daily_aggs AS a
    INNER JOIN ipo AS i ON i.ticker = a.ticker
    WHERE a.date >= today() - 1000
      AND a.volume > 0
      AND a.close > 0
)
WHERE age >= 0
  AND age <= 90
GROUP BY days_since_listing
ORDER BY min(age)
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisNon-Marginable Securities: Reg T vs House
Symbol count and average daily range, by price bucket ranking 6×3 → Symbols closing the month below $5 and below $1, past two years series 24×3 → One margin account through four events: equity, requirement, and SMA table 5×8 → SPY realized volatility and worst session, by calendar year ranking 20×4 → Reg T minimum branches for one uncovered AAPL call, by strike (dollars per share) ranking 12×4 → Reg T minimum branches for one uncovered AAPL put, by strike (dollars per share) ranking 11×4 → See all 2,648 queries →