farid-c9j0VMAlgo price
    Updated 2022-06-10
    select
    block_hour::date as days,
    avg(price_usd) as average_price
    from algorand.prices_swap
    where block_hour::date >= '2022-01-01'
    and ASSET_ID = '694432641'
    group by days
    Run a query to Download Data