mz0111flow 01
    Updated 2023-05-19
    SELECT
    date_trunc('week', RECORDED_HOUR) as date,
    TOKEN,
    avg(CLOSE) as USD_Price
    from flow.core.fact_hourly_prices
    where date >= current_date - {{period}}
    and token != 'Flow'
    group by 1 , 2
    Run a query to Download Data