permaryxlm price
    Updated 7 days ago
    select
    date_trunc('day', hour) as day,
    max(price) as daily_closing_price
    from stellar.price.ez_prices_hourly
    where blockchain = 'stellar'
    and is_native = true
    and hour >= date_trunc('day', current_date) - interval '12 months'
    group by date_trunc('day', hour)
    order by day desc;
    Last run: 7 days ago
    DAY
    DAILY_CLOSING_PRICE
    1
    2025-03-13 00:00:00.0000.28701
    2
    2025-03-12 00:00:00.0000.261219
    3
    2025-03-11 00:00:00.0000.261386
    4
    2025-03-10 00:00:00.0000.272387
    5
    2025-03-09 00:00:00.0000.278502
    6
    2025-03-08 00:00:00.0000.286329
    7
    2025-03-07 00:00:00.0000.300319
    8
    2025-03-06 00:00:00.0000.307982
    9
    2025-03-05 00:00:00.0000.306646
    10
    2025-03-04 00:00:00.0000.299767
    11
    2025-03-03 00:00:00.0000.358483
    12
    2025-03-02 00:00:00.0000.362505
    13
    2025-03-01 00:00:00.0000.315465
    14
    2025-02-28 00:00:00.0000.287968
    15
    2025-02-27 00:00:00.0000.292756
    16
    2025-02-26 00:00:00.0000.297219
    17
    2025-02-25 00:00:00.0000.302553
    18
    2025-02-24 00:00:00.0000.333756
    19
    2025-02-23 00:00:00.0000.335087
    20
    2025-02-22 00:00:00.0000.338276
    ...
    366
    13KB
    2s