Technical Analysis And Futures Trading Class Loading...... (No fees attached by the way)
More Info Coming Shortly.
But let's see How many are actually ready for what's Coming.
Like, retweet and Tag Friends below.ππ
Let's test The publicity Waters...
Explanation: This query gives you a leaderboard of the top 10 DEX projects by USD trading volume over the past 7 days. It shows:
Project name
Total volume in USD
Number of trades
Sorted from most to least active by volume.
Just completed an SQL assignment on @DuneAnalytics!
Dived into DEX trading data with some solid SQL magic:
π Top projects by volume
π Daily trade counts
π° High-value transaction filters
β±οΈ Time-based, DEX-specific, and volume-based trade analysis
π₯ Stay tuned!
@AnalyticSages
BONUS:
Query: SELECT project,
SUM(amount_usd) AS total_volume_usd,
COUNT(*) AS trade_count
FROM dex.trades
WHERE
block_time >= CURRENT_DATE - INTERVAL '7' day
GROUP BY
project
ORDER BY
total_volume_usd DESC
LIMIT 10
Rows Returned: 10