STRASMORE/EXPLORE 2,170 QUERIES

Wild multiples the dollar floor removes: highest relative volume among names trading under $500M this week

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-25, from Unusual Volume Stocks This Week, Measured.

as of series 6×5read in context →
Wild multiples the dollar floor removes: highest relative volume among names trading under $500M this week — 6 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickerrvol_weekweek_dollar_mavg_share_pricebaseline_adv_m
XOS65.1238.74.220.17
BIAF4129.90.490.3
CDTG40410.25.340.38
CAST27.3245.61.71.06
SLE25.41415.060.22
DAIC16.8983.620.32
Rows × columns
6 × 5
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 Wild multiples the dollar floor removes: highest relative volume among names trading under $500M this week, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (BIAF, CAST, CDTG…)
rvol_week number 16.8 to 65.1
week_dollar_m number 29.9 to 410.2
avg_share_price number 0.49 to 5.34 US dollars
baseline_adv_m number 0.17 to 1.06

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 sess AS (
    SELECT ticker,
           toDate(toTimeZone(window_start, 'America/New_York')) AS d,
           sum(toFloat64(volume)) AS vol,
           sum(toFloat64(close) * toFloat64(volume)) AS dollars
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= now() - INTERVAL 70 DAY
      AND toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York')) >= 570
      AND toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York')) < 960
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker, d
),
cal AS (
    SELECT d, row_number() OVER (ORDER BY d DESC) AS rn
    FROM (SELECT DISTINCT d FROM sess)
),
per_name AS (
    SELECT s.ticker AS ticker,
           avgIf(s.vol, c.rn <= 5) AS adv_recent,
           avgIf(s.vol, c.rn BETWEEN 6 AND 45) AS adv_base,
           sumIf(s.dollars, c.rn <= 5) AS dollar_recent,
           countIf(c.rn <= 5) AS recent_sessions,
           countIf(c.rn BETWEEN 6 AND 45) AS base_sessions
    FROM sess s INNER JOIN cal c ON s.d = c.d
    GROUP BY s.ticker
    HAVING adv_base > 100000 AND recent_sessions = 5 AND base_sessions >= 35
       AND dollar_recent > 0 AND dollar_recent < 500000000
)
SELECT ticker,
       round(adv_recent / adv_base, 1) AS rvol_week,
       round(dollar_recent / 1e6, 1) AS week_dollar_m,
       round(dollar_recent / (adv_recent * 5), 2) AS avg_share_price,
       round(adv_base / 1e6, 2) AS baseline_adv_m
FROM per_name
ORDER BY rvol_week DESC, ticker ASC
LIMIT 6

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 analysisUnusual Volume Stocks This Week, Measured
The board leader, day by day: daily relative volume and open-to-close change (last 15 sessions) series 15×5 Highest relative volume this week: trailing 5 sessions vs. the prior 40, for names trading $500M+ in the week series 8×6 Persistence check: the eight leaders' daily relative volume across the five sessions table 8×5 How the whole qualifying universe traded this week, bucketed by relative volume ranking 7×4 SPY: median shares traded per minute, by 30-minute clock bucket (ET, last 30 days, extended hours) series 32×2 Top 10 by full-day RVOL: latest completed session (20-day ADV above 5M shares, full history required) series 10×5 See all 2,170 queries →