vegardUntitled Query
    Updated 2022-11-23
    with weth as (
    select
    hour::date as day,
    avg(price) as price_eth
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'WETH'
    and hour::date >= '2022-11-01'
    group by day
    ),

    btc as (
    select
    hour::date as day,
    avg(price) as price_btc
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'WBTC'
    and hour::date >= '2022-11-01'
    group by day
    ),

    ldo as (
    select
    hour::date as day,
    avg(price) as price_ldo
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'LDO'
    and hour::date >= '2022-11-01'
    group by day
    ),

    sol as (
    select recorded_hour::date as day,
    avg (close) as price_sol
    from solana.core.fact_token_prices_hourly
    where symbol = 'SOL'
    and day >= '2022-11-01'
    Run a query to Download Data