ZookUntitled Query
    with BED_prices as (
    select
    hour,
    price as price
    from ethereum.token_prices_hourly
    where lower(token_address) = lower('0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6') -- BED
    and hour > '2021-12-06 00:00:00.000' -- 90 days
    order by 1 )
    ,

    wbtc_prices as (
    select
    hour,
    symbol,
    price
    from ethereum.token_prices_hourly
    where lower(symbol) = 'wbtc'
    and hour > '2021-12-06 00:00:00.000'
    order by hour)
    ,

    eth_prices as (
    select
    hour,
    symbol,
    price as price,
    first_value(price) over (order by hour) as first_price,
    (price-first_price)/first_price*100 as percentage_change_eth
    from ethereum.token_prices_hourly
    where lower(symbol) = 'eth'
    and hour > '2021-12-06 00:00:00.000'
    order by hour),

    combined_prices as (
    select
    Run a query to Download Data