PapasotAverage daily Uniswap price
    Updated 2022-11-28
    select
    date_trunc('day',hour) as day,
    avg(price) as uni_price
    from ethereum.token_prices_hourly
    where
    symbol = 'UNI' AND
    hour >= '2021-11-01' AND
    token_address = '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984'
    group by 1
    order by 1
    Run a query to Download Data