ArioMEME Coin Price
Updated 2024-05-31
999
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
27
28
29
30
31
32
33
34
35
36
›
⌄
with BONK as (
select
CLOSE as Bonk_Price,
last24,
(Bonk_Price - last24) / last24 * 100 as BONKChange24
from
solana.price.fact_prices_ohlc_hourly
join (
select
asset_id,
close as last24
from
solana.price.fact_prices_ohlc_hourly
where
asset_id = 'bonk'
and hour = current_date - interval '24 hour'
) using (asset_id)
where
ASSET_ID = 'bonk'
order by
hour DESC
limit
1
), BOME as (
select
CLOSE as BOME_Price,
last24,
(BOME_Price - last24) / last24 * 100 as BOMEChange24
from
solana.price.fact_prices_ohlc_hourly
join (
select
asset_id,
close as last24
from
solana.price.fact_prices_ohlc_hourly
QueryRunArchived: QueryRun has been archived