Yousefi_1994ETH Price USD
Updated 2023-07-14
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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