shadilAverage price of token
    Updated 2022-08-12
    select avg(atoken_price) as avg_price,
    reserve_name as token
    from flipside_prod_db.aave.market_stats
    where block_hour::date >= '{{start_date}}' and block_hour::date <= '{{end_date}}'
    and aave_version = 'Aave V2'
    and token like '{{token_name}}'
    group by token
    Run a query to Download Data