forgashUntitled Query
    Updated 2022-06-02
    SELECT
    date_trunc('h', timestamp) as _date,
    avg(price_usd) as price
    from flow.core.fact_prices
    where symbol = 'FLOW'
    group by 1
    order by 1
    Run a query to Download Data