barbodVolume of trades from (gALGO3 by) day
    Updated 2022-05-02
    select sum(swap_to_amount)
    as total_volume,
    block_timestamp::date
    as date_time
    from algorand.swaps
    where swap_from_asset_id = '694432641'
    and swap_from_amount > 0
    and block_timestamp::date >= '2022-01-01'
    group by date_time
    Run a query to Download Data