{"slug":"dax-futures-fdax-fdxm-fdxs","qid":"monthly_after_close","label":"monthly_after_close","post_title":"dax-futures-fdax-fdxm-fdxs","post_url":"/blog/dax-futures-fdax-fdxm-fdxs#q-monthly_after_close","columns":["month","volume_millions","after_frankfurt_close_pct"],"rows":[{"month":"2025-09","volume_millions":55.7,"after_frankfurt_close_pct":59.4},{"month":"2025-10","volume_millions":49.2,"after_frankfurt_close_pct":67},{"month":"2025-11","volume_millions":40.5,"after_frankfurt_close_pct":61.2},{"month":"2025-12","volume_millions":41,"after_frankfurt_close_pct":66.9},{"month":"2026-01","volume_millions":55.2,"after_frankfurt_close_pct":69.3},{"month":"2026-02","volume_millions":25.5,"after_frankfurt_close_pct":64.9},{"month":"2026-03","volume_millions":74.9,"after_frankfurt_close_pct":70.9},{"month":"2026-04","volume_millions":43.3,"after_frankfurt_close_pct":62.6},{"month":"2026-05","volume_millions":26.2,"after_frankfurt_close_pct":67.6},{"month":"2026-06","volume_millions":23.2,"after_frankfurt_close_pct":68.8},{"month":"2026-07","volume_millions":24.8,"after_frankfurt_close_pct":69.2},{"month":"2026-08","volume_millions":14.5,"after_frankfurt_close_pct":51.5}],"shape":"series","sql":"WITH bars AS\n(\n    SELECT\n        toTimeZone(window_start, 'America/New_York') AS et_ts,\n        toFloat64(volume)                            AS vol\n    FROM global_markets.delayed_stocks_minute_aggs\n    WHERE ticker = 'EWG'\n      AND window_start >= '2025-09-01 00:00:00'\n      AND window_start <  '2026-09-01 00:00:00'\n)\nSELECT\n    formatDateTime(toStartOfMonth(et_ts), '%Y-%m')  AS month,\n    round(sum(vol) / 1e6, 1)                        AS volume_millions,\n    round(100 * sumIf(vol, (toHour(et_ts) * 60 + toMinute(et_ts)) >= 690) / sum(vol), 1) AS after_frankfurt_close_pct\nFROM bars\nGROUP BY month\nORDER BY month","computed_at":"2026-09-23T14:47:40.252622+00:00","elapsed":0.002985324}