cypherHourly average avax price
Updated 2022-11-23
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
›
⌄
with data as (select
block_timestamp as time,
amount_usd/amount as avax_price
from avalanche.core.ez_avax_transfers
where block_timestamp >= '2022-10-20'),
final as (select
date_trunc('hour', time) as hour,
avg(avax_price) as avg_avax_price
from data
group by hour)
select
date_trunc('day', hour) as date,
avg(avg_avax_price) as avg_price_avax
from final
where date >= current_date() - 30
group by date
Run a query to Download Data