BlockTrackerRUNE / BTC ratio
    Updated 7 hours ago

    with btc_price as (
    select
    date_trunc('day', hour) as date,
    avg(price) as btc_usd
    from crosschain.price.ez_prices_hourly
    where symbol = 'BTC'
    and blockchain = 'bitcoin'
    and is_native = TRUE
    group by 1
    )
    ,
    eth_price as (
    select
    date_trunc('day', hour) as date,
    avg(price) as eth_usd
    from crosschain.price.ez_prices_hourly
    where symbol = 'ETH'
    and blockchain = 'ethereum'
    and is_native = TRUE
    group by 1
    )
    ,
    rune_price as (
    select
    date_trunc('day', hour) as date,
    avg(price) as rune_usd
    from crosschain.price.ez_prices_hourly
    where symbol = 'RUNE'
    and blockchain = 'thorchain'
    and is_native = TRUE
    group by 1
    )
    select
    a.date,
    btc_usd,
    Last run: about 7 hours ago
    DATE
    BTC_USD
    ETH_USD
    RUNE_USD
    RUNE_PER_BTC
    RUNE_PER_ETH
    1
    2024-11-13 00:00:00.00089074.6666666673217.6166666675.741250.00006445435290.001784317585
    2
    2024-11-27 00:00:00.00094024.1666666673461.3641666675.45250.000057990410270.001575245983
    3
    2025-02-13 00:00:00.00096493.4583333332683.0229166671.4895833330.000015437143190.0005551884496
    4
    2025-02-17 00:00:00.00096141.5416666672716.271.2408333330.000012906318250.0004568151669
    5
    2025-02-07 00:00:00.00097384.3333333332708.8804166671.261250.000012951261840.0004655982568
    6
    2024-06-19 00:00:00.00065119.2083333333536.7570833334.1145833330.000063185401640.001163377421
    7
    2024-06-21 00:00:00.00064204.0833333333498.5495833334.240.000066039413380.001211930801
    8
    2024-07-12 00:00:00.00057451.9166666673099.7441666673.53250.000061486199330.001139610178
    9
    2024-09-01 00:00:00.00058352.3752482.981253.880.000066492580640.001562637656
    10
    2025-05-17 00:00:00.000103206.6666666672488.5491666671.7095833330.000016564659910.0006869799304
    11
    2025-03-31 00:00:00.00082359.6251814.9251.1279166670.000013695019450.0006214673701
    12
    2025-04-28 00:00:00.00094291.8333333331789.9079166671.361250.000014436563080.0007605139836
    13
    2025-05-19 00:00:00.000104199.4583333332438.6995833331.7829166670.000017110613580.0007310931936
    14
    2025-06-12 00:00:00.000107624.0833333332744.6241666671.650.000015331141030.0006011752064
    15
    2024-06-28 00:00:00.00061189.3333333333426.1829166674.07250.000066555717770.001188640566
    16
    2024-07-02 00:00:00.00062519.253434.8008333334.181250.000066879401140.00121731949
    17
    2024-07-04 00:00:00.00058448.1253181.9745833333.6941666670.00006320419460.001160966742
    18
    2024-08-24 00:00:00.00064139.1252768.366254.4754166670.000069776702860.001616627376
    19
    2024-07-06 00:00:00.00056979.0416666673009.2245833333.4050.000059758814830.001131520731
    20
    2024-08-22 00:00:00.00060737.8333333332622.143.9008333330.000064224110730.001487652579
    ...
    366
    35KB
    3s