Updated 2022-07-25
    select
    HOUR::date as day,
    avg(price) as ETH_price
    from ethereum.core.fact_hourly_token_prices
    where SYMBOL='WETH'
    and day between '2022-01-14' and '2022-07-20'
    group by 1

    Run a query to Download Data