zakkisyed$THOR price
    Updated 2021-12-11
    select avg(price) as thor_price, date_trunc('day', hour) as day
    from ethereum.token_prices_hourly
    where symbol = 'THOR'
    -- or symbol = 'THOR'
    and hour > CURRENT_DATE - 40
    group by DAY
    order by day ASC


    Run a query to Download Data