STRASMORE/EXPLORE 2,170 QUERIES

MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session)

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 What Is Average Daily Volume (ADV)?.

as of series 49×3read in context →
MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session) — 49 rows by 3 columns, computed from US exchange, SIP and OPRA data.
dateadv_20_session_madv_90_session_m
2025-12-1021.319.9
2025-12-1520.320.1
2025-12-1820.720.2
2025-12-232020.7
2025-12-2920.720.8
2026-01-0222.221.3
2026-01-0724.522
2026-01-122622.5
2026-01-1526.222.5
2026-01-2126.923
2026-01-2628.523.4
2026-01-2930.523.7
2026-02-0331.923.9
2026-02-0632.624.4
2026-02-1134.124.7
2026-02-173524.9
2026-02-2032.525
2026-02-253225.4
2026-03-0230.225.4
2026-03-0528.425.8
2026-03-1028.426.2
2026-03-1327.226.7
2026-03-1828.727.3
2026-03-2333.228.2
2026-03-2635.829
2026-03-3140.430
2026-04-0643.830.5
2026-04-094531.1
2026-04-1445.631.9
2026-04-1743.232.4
2026-04-2241.432.9
2026-04-2739.633.4
2026-04-3034.733.5
2026-05-0535.734.1
2026-05-0837.335
2026-05-134036.1
2026-05-184236.4
2026-05-2143.637
2026-05-2746.238.1
2026-06-0147.738.1
2026-06-0446.538.4
2026-06-0947.339.2
2026-06-1246.539.4
2026-06-1744.839.4
2026-06-2345.939.7
2026-06-2645.840.6
2026-07-0145.841.1
2026-07-0745.141.7
2026-07-104241.9
Rows × columns
49 × 3
Period covered
to
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 MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session), derived from the stored result.
ColumnTypeRangeNotes
date date 2025-12-10 to 2026-07-10
adv_20_session_m number 20 to 47.7
adv_90_session_m number 19.9 to 41.9

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 et_date,
           sum(toFloat64(volume)) AS day_shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'MU'
      AND window_start >= toDateTime('2025-08-01 00:00: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')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
    GROUP BY et_date
),
rolled AS (
    SELECT et_date,
           avg(day_shares) OVER (ORDER BY et_date ROWS BETWEEN 19 PRECEDING AND CURRENT ROW) AS adv20,
           avg(day_shares) OVER (ORDER BY et_date ROWS BETWEEN 89 PRECEDING AND CURRENT ROW) AS adv90,
           row_number() OVER (ORDER BY et_date) AS rn,
           count() OVER () AS total_rows
    FROM daily
)
SELECT formatDateTime(et_date, '%Y-%m-%d') AS date,
       round(adv20 / 1e6, 1) AS adv_20_session_m,
       round(adv90 / 1e6, 1) AS adv_90_session_m
FROM rolled
WHERE rn > 90 AND (rn % 3 = total_rows % 3)
ORDER BY et_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 analysisWhat Is Average Daily Volume (ADV)?
ADV by hand: KO's five daily volumes, their sum, and the average (July 6–10, 2026) series 5×5 20-session regular-hours ADV: shares, dollars, and the extended-hours share (June 11 – July 10, 2026) table 5×5 Options ADV: average daily contracts and share-equivalent exposure (June 11 – July 10, 2026) ranking 4×4 Days to cover, recomputed: FINRA's denominator vs this page's 20-session regular-hours ADV (settlement June 30, 2026) table 2×6 MU's sharpest 2026 volume shock: the event day vs the trailing ADV before and after scalar 1×6 Dollar ADV across the whole US tape: percentiles and threshold counts (June 11 – July 10, 2026) scalar 1×10 See all 2,170 queries →