Updated 2022-11-29
    --This code is thankfully burrowed from HBD1994: https://app.flipsidecrypto.com/dashboard/GWtbAx
    select
    date(TIMESTAMP) as "Date",
    avg(price_usd) as "Daily Price"
    from flow.core.fact_prices
    where TOKEN_CONTRACT = 'A.1654653399040a61.FlowToken'
    group by 1
    order by 1
    Run a query to Download Data