boomer77$RUNE Price
Updated 2021-12-01
9
1
2
3
4
5
6
7
›
⌄
select hour as dt, avg(price) as rune_price, CASE
when dt between '2021-11-05' and '2021-11-12' then 'Before'
when dt between '2021-11-12' and '2021-11-17' then 'Shutdown'
when dt between '2021-11-17' and '2021-11-24' then 'After' else null end as period
from ethereum.token_prices_hourly
where symbol = 'RUNE' and dt between '2021-11-05' and '2021-11-24'
group by 1
Run a query to Download Data