Josh956Osmo price on
    Updated 2022-11-02
    select date_trunc('day', recorded_at) as day, symbol, avg(price) as Price
    from osmosis.core.dim_prices
    where symbol like '%OSMO%'
    and day>current_date-60
    group by 1,2