sepehrmhz82023-05-17 10:09 AM
    Updated 2023-05-19
    select
    date_trunc(week, recorded_hour) as date,
    token,
    avg(close) as "PRICE($)"
    from
    flow.core.fact_hourly_prices
    where
    recorded_hour >= '2022-01-01'
    group by
    1,
    2
    order by
    1
    Run a query to Download Data