Ali3NJACK Price Over Time (Avalanche)
    Updated 32 minutes ago
    with savaxpricet as (
    select hour,
    avg (price) as savaxprice
    from avalanche.price.ez_prices_hourly
    where token_address = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
    and hour >= '2025-03-01'
    group by 1),

    pricet as (
    select date_trunc (hour,hour) as day,
    avg (price) as price
    from avalanche.price.ez_prices_hourly
    where token_address = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0'
    group by 1),

    pricet1 as (
    select date_trunc (hour,block_timestamp) as day1,
    median (amount_in_usd/amount_out) as price
    from avalanche.defi.ez_dex_swaps
    where symbol_in in ('WAVAX','USDC')
    and (token_out = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0')
    and block_timestamp >= '2025-04-03'
    group by 1),

    pricet2 as (
    select date_trunc (hour,block_timestamp) as day1,
    median (amount_in*savaxprice/amount_out) as price
    from avalanche.defi.ez_dex_swaps t1 join savaxpricet t2 on date_Trunc (hour,t1.block_timestamp) = t2.hour
    where token_in = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
    and (token_out = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0')
    and block_timestamp >= '2025-04-03'
    group by 1),

    low_high_table as (
    select day1,
    min (price) as low_price,
    Last run: 32 minutes agoAuto-refreshes every 1 hour
    DATE
    OPEN_PRICE
    CLOSE_PRICE
    LOW_PRICE
    HIGH_PRICE
    1
    2025-04-28 23:00:00.0000.089517443310.089517443310.089517443310.08951744331
    2
    2025-04-28 20:00:00.0000.088618458680.088618458680.088618458680.08861845868
    3
    2025-04-28 17:00:00.0000.085553880560.085553880560.085553880560.08555388056
    4
    2025-04-28 16:00:00.0000.084331202860.084331202860.084331202860.08433120286
    5
    2025-04-28 08:00:00.0000.085368147660.085368147660.085368147660.08536814766
    6
    2025-04-28 02:00:00.0000.08245059880.08245059880.08245059880.0824505988
    7
    2025-04-27 14:00:00.0000.08415111490.08415111490.08415111490.0841511149
    8
    2025-04-27 13:00:00.0000.084702151530.084702151530.084702151530.08470215153
    9
    2025-04-26 15:00:00.0000.085957236330.085957236330.085957236330.08595723633
    10
    2025-04-26 14:00:00.0000.086575659580.086575659580.086575659580.08657565958
    11
    2025-04-26 07:00:00.0000.089350008520.089350008520.089350008520.08935000852
    12
    2025-04-26 06:00:00.0000.088689392330.088689392330.088689392330.08868939233
    13
    2025-04-25 18:00:00.0000.089359717570.089359717570.089359717570.08935971757
    14
    2025-04-25 15:00:00.0000.087824411430.087824411430.087824411430.08782441143
    15
    2025-04-25 13:00:00.0000.088860694640.088860694640.088860694640.08886069464
    16
    2025-04-25 11:00:00.0000.088257787690.088257787690.088257787690.08825778769
    17
    2025-04-25 07:00:00.0000.086592761480.086592761480.086592761480.08659276148
    18
    2025-04-25 05:00:00.0000.086233455140.086233455140.086233455140.08623345514
    19
    2025-04-25 04:00:00.0000.084745553880.084745553880.084745553880.08474555388
    20
    2025-04-24 19:00:00.0000.084973557830.084973557830.084973557830.08497355783
    ...
    248
    20KB
    23s