Updated 2022-10-05
9
1
2
3
4
5
6
7
8
9
›
⌄
select
date_trunc('day',HOUR) as daily,
avg (price) as AVG_price,
median (price) as median_price,
max (price) as max_price,
min (price) as min_price
from optimism.core.fact_hourly_token_prices
where symbol = 'OP'
group by 1
Run a query to Download Data