Afonso_DiazOvertime
Updated 2025-01-27
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
pricet as (
select
hour::date as date,
'FLOW' as symbol,
avg(price) as token_price_usd
from
flow.price.ez_prices_hourly
where
symbol = 'FLOW'
group by 1, 2
union all
select
hour::date as date,
'stFLOW' as symbol,
avg(price) as token_price_usd
from
flow.price.ez_prices_hourly
where
symbol = 'FLOW'
group by 1, 2
union all
select
date(f.value[0]) as date,
'BLT' as symbol,
f.value[1] as token_price_usd
from
(
select
livequery.live.udf_api(
'https://api.coingecko.com/api/v3/coins/blocto-token/market_chart?vs_currency=usd&days=365'
QueryRunArchived: QueryRun has been archived