KaskoazulstETH vs. ETH
    Updated 2022-04-01
    WITH ETH AS (
    select hour,
    price as ETH_price
    from ethereum.token_prices_hourly
    where hour >= '2021-01-01'
    and symbol = 'ETH'
    order by 1
    ),

    STETH AS (
    select hour,
    price as stETH_price
    from ethereum.token_prices_hourly
    where hour >= '2021-01-01'
    and token_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    order by 1
    )

    select eth.hour,
    ETH_price,
    stETH_price,
    (stETH_price - ETH_price)/ETH_price*100 as diff_price
    from ETH eth
    left join stETH st
    on eth.hour = st.hour


    Run a query to Download Data