Daily high-low range and dollar volume by shares-outstanding tier: US common stocks, regular-hours sessions, June 11 to July 10, 2026
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-07-26, from Stock Float vs. Shares Outstanding Explained.
| share_count_tier | companies | median_daily_range_pct | p90_daily_range_pct | median_daily_dollar_volume_m |
|---|---|---|---|---|
| under 20M shares | 1093 | 4.82 | 13.28 | 0.49 |
| 20-50M shares | 971 | 3.94 | 9.6 | 4.89 |
| 50-200M shares | 1532 | 3.64 | 8.16 | 19.94 |
| 200M-1B shares | 804 | 2.72 | 7.07 | 75.22 |
| over 1B shares | 221 | 1.68 | 4.65 | 99.47 |
- Rows × columns
- 5 × 5
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
share_count_tier |
text | 5 distinct values | |
companies |
number | 221 to 1,532 | |
median_daily_range_pct |
number | 1.68 to 4.82 | percent |
p90_daily_range_pct |
number | 4.65 to 13.28 | percent |
median_daily_dollar_volume_m |
number | 0.49 to 99.47 | 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 latest AS (
SELECT tk AS ticker,
argMax(basic_shares_outstanding, (filing_date, period_end)) AS shares
FROM global_markets.stocks_income_statements
ARRAY JOIN tickers AS tk
WHERE timeframe = 'quarterly'
AND filing_date >= '2025-10-01'
AND filing_date <= '2026-07-10'
AND basic_shares_outstanding > 0
GROUP BY tk
),
daily AS (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS session,
toFloat64(max(high)) AS hi,
toFloat64(min(low)) AS lo,
toFloat64(argMax(close, window_start)) AS last_price,
sum(toFloat64(volume) * toFloat64(close)) AS dollar_volume
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime('2026-06-11 09:30:00', 'America/New_York')
AND window_start < toDateTime('2026-07-11 00:00:00', 'America/New_York')
AND toHour(toTimeZone(window_start, 'America/New_York')) >= 9
AND toHour(toTimeZone(window_start, 'America/New_York')) < 16
AND NOT (toHour(toTimeZone(window_start, 'America/New_York')) = 9
AND toMinute(toTimeZone(window_start, 'America/New_York')) < 30)
GROUP BY ticker, session
HAVING lo > 0 AND last_price >= 1
)
SELECT multiIf(l.shares < 20e6, 'under 20M shares',
l.shares < 50e6, '20-50M shares',
l.shares < 200e6, '50-200M shares',
l.shares < 1000e6, '200M-1B shares',
'over 1B shares') AS share_count_tier,
uniqExact(d.ticker) AS companies,
round(quantileDeterministic(0.5)(100 * (hi - lo) / lo, cityHash64(d.ticker, d.session)), 2) AS median_daily_range_pct,
round(quantileDeterministic(0.9)(100 * (hi - lo) / lo, cityHash64(d.ticker, d.session)), 2) AS p90_daily_range_pct,
round(quantileDeterministic(0.5)(dollar_volume, cityHash64(d.ticker, d.session)) / 1e6, 2) AS median_daily_dollar_volume_m
FROM daily AS d
INNER JOIN latest AS l ON d.ticker = l.ticker
GROUP BY share_count_tier
ORDER BY min(l.shares)
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 analysisStock Float vs. Shares Outstanding Explained
Eight of H1 2026's biggest measured US IPOs: shares offered vs. shares outstanding at listing
table 8×5
→
Share counts from the latest quarterly income statements on record: three megacaps
table 3×5
→
Medline (MDLN): the 20 sessions before its 180-day mark vs. every session from it, regular-hours volume and daily range
series 2×8
→
Shares outstanding across every company with a recent quarterly filing: percentiles, in millions of shares
scalar 1×6
→
From every H1 2026 US-dollar listing down to the measured set
scalar 1×5
→
Float at listing: shares offered as a share of recorded shares outstanding, H1 2026 US IPOs of $100M+
scalar 1×5
→
See all 2,170 queries →