Updated 2022-02-11
    select date_trunc('day', block_timestamp) as date,avg(price_usd)
    from terra.oracle_prices
    where symbol='LUNA'

    group by 1 order by 1

    limit 10

    Run a query to Download Data