niloUntitled Query
    Updated 2022-07-19
    select
    date_trunc('day', recorded_at) as date,
    avg(price) as price
    from osmosis.core.dim_prices
    where symbol = 'OSMO'
    and date > '2021-10-06'
    group by date
    Run a query to Download Data