MLDZMN ETH price
    Updated 2022-06-30
    select
    date_trunc('day',HOUR) as day,
    avg(price) as price

    from ethereum.core.fact_hourly_token_prices
    where day>=CURRENT_DATE-90
    and SYMBOL='WETH'
    group by 1
    Run a query to Download Data