itsxenuxVolume of swaps of ANIRAND on 28th March 2022
    Updated 2022-05-12
    with query_table1 as
    (select volume_usd_in_hour
    as total_volume, block_hour
    as date_time
    from algorand.prices_swap
    where (block_hour::date = '2022-03-28' or block_hour::date = '2022-03-27')
    and asset_id = 604643747)

    select total_volume, date_time
    from query_table1
    Run a query to Download Data