cyphernear current price
Updated 2023-03-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
with near_price as (select
price_usd as current_price
from near.core.fact_prices
where token = 'Wrapped NEAR fungible token'
and timestamp = (select max(timestamp) from near.core.fact_prices where token = 'Wrapped NEAR fungible token')),
ath as (select
max(price_usd)as all_time_high
from near.core.fact_prices
where token = 'Wrapped NEAR fungible token'),
one_day_high as (select
max(price_usd) as one_day_high_price
from near.core.fact_prices
where token = 'Wrapped NEAR fungible token'
and timestamp >= DATEADD(HOUR, -1, current_date())),
one_day_low as (select
min(price_usd) as one_day_min_price
from near.core.fact_prices
where token = 'Wrapped NEAR fungible token'
and timestamp >= DATEADD(HOUR, -1, current_date()))
select * from one_day_low
limit 1
Run a query to Download Data