Yousefi_1994ETH Price USD
    Updated 2023-07-14
    with eth_price_usd as (
    select
    hour::date as days,
    round(avg(price), 2) as price
    from ethereum.core.fact_hourly_token_prices
    where token_address is null
    and hour::date > current_date - 7
    and hour::date <= current_date
    group by days
    )

    select * from eth_price_usd order by days
    Run a query to Download Data