MLDZMNfeemoon2
    Updated 2023-08-15
    select
    RECORDED_HOUR::date as day,
    SYMBOL,
    avg(close) as price_token
    from solana.core.fact_token_prices_hourly
    where SYMBOL in ('SOL','BONK')
    group by 1,2
    limit 10
    Run a query to Download Data