Baselight
Loading...Loading chart...
1select trades.created_time::date as trade_date, ROUND(sum(trades.price*trades.count)/1000000) as total_usd_millions
2from @kalshi.markets.market_trades trades
3WHERE trades.created_time > now() - interval '7 days' AND trades.created_time < now()::date
4GROUP BY ALL
5ORDER By 1
trade_datetotal_usd_millions
2025-12-07143
2025-12-0861
2025-12-0970
2025-12-1059
2025-12-1155
2025-12-1263
2025-12-1382

Share link

Anyone who has the link will be able to view this.