boomer77$RUNE Price
    Updated 2021-12-01
    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