feyikemiWeekday traded Vol
    Updated 2025-03-25
    --Weekday analysis learned from Ali3n https://flipsidecrypto.xyz/Ali3N/dashboards

    SELECT
    DAYNAME(TO_DATE(block_timestamp::date)) AS Weekday,
    COUNT(DISTINCT tx_hash) AS Total_Trades,
    COUNT(DISTINCT swapper) AS Total_Traders,
    SUM(COALESCE(amount_in_usd, amount_out_usd)) AS Total_Traded_Volume
    FROM aptos.defi.ez_dex_swaps
    WHERE block_timestamp::DATE >= '{{Start_Date}}'
    AND amount_in_usd < 1e6
    AND amount_out_usd < 1e6
    GROUP BY 1
    ORDER BY Total_Traded_Volume DESC



    Last run: about 2 months ago
    WEEKDAY
    TOTAL_TRADES
    TOTAL_TRADERS
    TOTAL_TRADED_VOLUME
    1
    Tue40881854180321450685142.26469
    2
    Mon40764513689741441254553.80005
    3
    Fri36030623416591365210613.24696
    4
    Wed38329993635571351228564.36458
    5
    Thu37309584170721334472179.1722
    6
    Sun33202633432871127315498.26365
    7
    Sat31844193176111116390368.83169
    7
    280B
    17s