When Is the COT Report Released?
Units versus dollars: seven funds tracking the markets the COT covers, July 2026ranking ·
2026-08-04 · 7×4
SPY: the move from Tuesday's close to Friday 3:30 pm ET, week by week, Aug 2025 to Jul 2026series ·
2026-08-04 · 48×4
How far seven markets travel between Tuesday's close and Friday 3:30 pm ET, Aug 2024 to Jul 2026table ·
2026-08-04 · 7×5
Where Friday volume sits on the clock: SPY, 15-minute buckets, full Friday sessions over the past yearseries ·
2026-08-04 · 26×3
Units versus dollars: seven funds tracking the markets the COT covers, July 2026
Units versus dollars: seven funds tracking the markets the COT covers, July 2026
| ticker | unit_size_usd | share_of_units_pct | share_of_dollars_pct |
|---|---|---|---|
| SPY | 744.99 | 31.75 | 50.07 |
| QQQ | 700.24 | 27.74 | 41.12 |
| GLD | 373.11 | 4.46 | 3.52 |
| USO | 121.95 | 4.6 | 1.19 |
| TLT | 83.89 | 16.18 | 2.87 |
| SLV | 52.92 | 9.86 | 1.11 |
| UNG | 10.52 | 5.41 | 0.12 |
the exact SQL behind every number
WITH raw AS (
SELECT ticker,
toTimeZone(window_start, 'America/New_York') AS et,
close,
volume
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'QQQ', 'TLT', 'GLD', 'SLV', 'USO', 'UNG')
AND window_start >= toDateTime('2026-07-01 00:00:00')
AND window_start < toDateTime('2026-08-01 00:00:00')
),
rth AS (
SELECT ticker,
volume AS shares,
toFloat64(close) * volume AS dollars
FROM raw
WHERE (toHour(et) * 60 + toMinute(et)) BETWEEN 570 AND 959
)
SELECT ticker,
round(sum(dollars) / sum(shares), 2) AS unit_size_usd,
round(100 * sum(shares) / sum(sum(shares)) OVER (), 2) AS share_of_units_pct,
round(100 * sum(dollars) / sum(sum(dollars)) OVER (), 2) AS share_of_dollars_pct
FROM rth
GROUP BY ticker
ORDER BY unit_size_usd DESC
More from this analysisWhen Is the COT Report Released?
SPY: the move from Tuesday's close to Friday 3:30 pm ET, week by week, Aug 2025 to Jul 2026
series 48×4
→
Where Friday volume sits on the clock: SPY, 15-minute buckets, full Friday sessions over the past year
series 26×3
→
How far seven markets travel between Tuesday's close and Friday 3:30 pm ET, Aug 2024 to Jul 2026
table 7×5
→
SPY move from Tuesday close to Friday close, the age of a COT snapshot
ranking 11×4
→
See all 2,173 queries →