Sbhn_NPUntitled Query
    Updated 2023-02-09
    select date_trunc('day',hour) as date,
    avg(price) as pricee
    from ethereum.core.fact_hourly_token_prices
    where symbol like '%GNS%'
    and date>= CURRENT_DATE-10
    group by 1
    Run a query to Download Data