mucryptoWETH price
Updated 2023-03-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
›
⌄
with eth as (select
date(hour) as "Date",
avg(price) as "Average WETH price, USD"
from ethereum.core.fact_hourly_token_prices
where "Date" between '2022-05-04' and '2022-05-15'
and symbol = 'WETH'
group by "Date"),
luna as (select
date(hour) as "Date",
avg(price) as "Average LUNA price, USD"
from ethereum.core.fact_hourly_token_prices
where "Date" between '2022-05-04' and '2022-05-15'
and symbol = 'LUNA'
group by "Date"),
ust as (select
date(hour) as "Date",
avg(price) as "Average UST price, USD"
from ethereum.core.fact_hourly_token_prices
where "Date" between '2022-05-04' and '2022-05-15'
and symbol = 'UST'
group by "Date")
select eth."Average WETH price, USD", luna."Average LUNA price, USD", ust."Average UST price, USD", eth."Date"
from eth
join luna
on eth."Date"=luna."Date"
join ust
on eth."Date"=ust."Date"
Run a query to Download Data