STATUS | Traders | |
---|---|---|
1 | New Users | 69228 |
2 | Active Users | 101030 |
MasiShare of New Vs. Old Traders
Updated 2024-10-06
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 tb1 as ( select trunc(hour,'day') as day,
'aurora' as token_address,
avg(price) as avg_price
from near.price.ez_prices_hourly
where symbol = 'ETH'
group by 1,2
UNION
select trunc(hour,'day') as day,
'3.contract.portalbridge.near' as token_address,
1 as avg_price
from near.price.ez_prices_hourly
where symbol = 'ETH'
UNION
Select trunc(TO_TIMESTAMP(value[0]::string),'day') as day,
'usmeme.tg' as token_address,
avg(value[1]) as avg_price
from (
SELECT livequery.live.udf_api(
'https://api.coingecko.com/api/v3/coins/usmeme/market_chart?vs_currency=usd') as resp
)
,LATERAL FLATTEN (input => resp:data:prices)
group by all
UNION
Select trunc(TO_TIMESTAMP(value[0]::string),'day') as day,
'token.jumbo_exchange.near' as token_address,
avg(value[1]) as avg_price
from (
SELECT livequery.live.udf_api(
'https://api.coingecko.com/api/v3/coins/jumbo-exchange/market_chart?vs_currency=usd') as resp
)
,LATERAL FLATTEN (input => resp:data:prices)
group by all
UNION
Select trunc(TO_TIMESTAMP(value[0]::string),'day') as day,
'celo.token.a11bd.near' as token_address,
avg(value[1]) as avg_price
Last run: about 2 months ago
2
45B
164s