{"slug":"when-is-the-cot-report-released","qid":"unit_vs_size","label":"Units versus dollars: seven funds tracking the markets the COT covers, July 2026","post_title":"When Is the COT Report Released?","post_url":"/blog/when-is-the-cot-report-released#q-unit_vs_size","columns":["ticker","unit_size_usd","share_of_units_pct","share_of_dollars_pct"],"rows":[{"ticker":"SPY","unit_size_usd":744.99,"share_of_units_pct":31.75,"share_of_dollars_pct":50.07},{"ticker":"QQQ","unit_size_usd":700.24,"share_of_units_pct":27.74,"share_of_dollars_pct":41.12},{"ticker":"GLD","unit_size_usd":373.11,"share_of_units_pct":4.46,"share_of_dollars_pct":3.52},{"ticker":"USO","unit_size_usd":121.95,"share_of_units_pct":4.6,"share_of_dollars_pct":1.19},{"ticker":"TLT","unit_size_usd":83.89,"share_of_units_pct":16.18,"share_of_dollars_pct":2.87},{"ticker":"SLV","unit_size_usd":52.92,"share_of_units_pct":9.86,"share_of_dollars_pct":1.11},{"ticker":"UNG","unit_size_usd":10.52,"share_of_units_pct":5.41,"share_of_dollars_pct":0.12}],"shape":"ranking","sql":"WITH raw AS (\n    SELECT ticker,\n           toTimeZone(window_start, 'America/New_York') AS et,\n           close,\n           volume\n    FROM global_markets.delayed_stocks_minute_aggs\n    WHERE ticker IN ('SPY', 'QQQ', 'TLT', 'GLD', 'SLV', 'USO', 'UNG')\n      AND window_start >= toDateTime('2026-07-01 00:00:00')\n      AND window_start < toDateTime('2026-08-01 00:00:00')\n),\nrth AS (\n    SELECT ticker,\n           volume AS shares,\n           toFloat64(close) * volume AS dollars\n    FROM raw\n    WHERE (toHour(et) * 60 + toMinute(et)) BETWEEN 570 AND 959\n)\nSELECT ticker,\n       round(sum(dollars) / sum(shares), 2) AS unit_size_usd,\n       round(100 * sum(shares) / sum(sum(shares)) OVER (), 2) AS share_of_units_pct,\n       round(100 * sum(dollars) / sum(sum(dollars)) OVER (), 2) AS share_of_dollars_pct\nFROM rth\nGROUP BY ticker\nORDER BY unit_size_usd DESC","computed_at":"2026-08-04T14:59:58.923693+00:00","elapsed":0.003177976}