zakkisyedLUNA price movement
    Updated 2021-12-30
    select
    date_trunc('day',DATE),
    avg(balance_usd/balance) as luna_price
    from terra.daily_balances
    where currency = 'LUNA'
    and balance != '0'
    and date > CURRENT_DATE - 90
    group by 1
    order by 1 DESC


    Run a query to Download Data