Baselight
Sign In

Query Result

Loading...Loading chart...
1WITH raw as (
2select markets.title, count(*) as count_trades, round(sum(trades.price*trades.count)/1000000,1) as total_trades_usd
3from @kalshi.markets.market_trades trades
4INNER JOIN @kalshi.markets.markets markets ON (trades.market_ticker=markets.ticker)
5WHERE trades.created_time > now() - interval '7 days'
6GROUP BY ALL
7ORDER BY total_trades_usd DESC
8LIMIT 10
9)
10select title as market, count_trades as "# Trades", total_trades_usd as "USD (millions)"
11from raw
12order by total_trades_usd
market# TradesUSD (millions)
Billboard 200 #2 on Mar 28, 2026 chart?18null
yes Over 2.5 goals scored,yes Over 2.5 goals scored13null
Will Susan Collins vote for a motion to invoke cloture on the SAVE America Act?34null
yes Arsenal,yes PSG,yes Bodoe/Glimt,yes Barcelona,yes Liverpool,yes Atletico1null
Top US Netflix Show on Mar 16, 2026?668null
yes Arsenal,yes Manchester City,yes Bayern Munich,yes Liverpool2null
Will Justin Pearson be the Democratic nominee for TN-09?2null
#2 Global Netflix Show on Mar 16, 2026?197null
Will the White House Press Secretary say Affordable / Affordability at her next press briefing?82null
Top US Netflix Movie on Mar 16, 2026?273null

Share link

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