STRASMORE/EXPLORE 2,170 QUERIES

The first active ETF share class: DFMC weekly closes since its March 2026 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-08-02, from Mutual Funds vs ETFs: What Actually Differs.

as of series 20×4read in context →
The first active ETF share class: DFMC weekly closes since its March 2026 listing — 20 rows by 4 columns, computed from US exchange, SIP and OPRA data.
weekweek_labeldfmc_closevolume_thousands
2026-03-16Mar 1649.081165.5
2026-03-23Mar 2349.9292.3
2026-03-30Mar 3051.49120.7
2026-04-06Apr 653.32158.1
2026-04-13Apr 1355.4550.9
2026-04-20Apr 2055.57476.1
2026-04-27Apr 2756.07225.9
2026-05-04May 456.59383.9
2026-05-11May 1154.68311.9
2026-05-18May 1856.1693.4
2026-05-25May 2556.7653.6
2026-06-01Jun 156.42104
2026-06-08Jun 858.8158.1
2026-06-15Jun 1558.8542.6
2026-06-22Jun 2260.71133.8
2026-06-29Jun 2960.22145.1
2026-07-06Jul 660.15231.7
2026-07-13Jul 1360.2391.5
2026-07-20Jul 2059.6976.7
2026-07-27Jul 2759.9788.7
Rows × columns
20 × 4
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 The first active ETF share class: DFMC weekly closes since its March 2026 listing, derived from the stored result.
ColumnTypeRangeNotes
week date 2026-03-16 to 2026-07-27
week_label text 20 distinct values (Apr 13, Apr 20, Apr 27…)
dfmc_close number 49.08 to 60.71 US dollars
volume_thousands number 42.6 to 1,165.5 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 bars AS (
    SELECT toMonday(toDate(toTimeZone(window_start, 'America/New_York'))) AS week_start,
           argMax(close, window_start) AS week_close,
           sum(volume) AS shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'DFMC'
      AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-03-20')
      AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-07-31')
    GROUP BY week_start
)
SELECT formatDateTime(week_start, '%Y-%m-%d') AS week,
       formatDateTime(week_start, '%b %e') AS week_label,
       round(week_close, 2) AS dfmc_close,
       round(shares / 1000, 1) AS volume_thousands
FROM bars
ORDER BY week_start

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 analysisMutual Funds vs ETFs: What Actually Differs
One session, many prices: VOO in half-hour marks, Wednesday July 22, 2026 series 32×3 Quoted bid-ask spread by fund: venue quotes, 11:00 to 13:59 ET, July 22, 2026 ranking 7×4 How far the price travels inside a day: seven ETFs, July 2026 sessions ranking 7×4 Short-term Treasury yields by month, the reference for fund borrowing costs series 36×3 Monthly cost of a near-the-money call, as a percent of share price series 18×3 Cash distributions over the trailing year, by declared schedule ranking 5×2 See all 2,170 queries →