Flipside TeamPrice - $DOG
Updated 2024-05-29
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
27
28
29
30
31
32
›
⌄
select date_trunc('day',HOUR) as date
, avg(PRICE)*1e5 as Price
, 'DOG*1e5' as Token
from bsc.price.fact_hourly_token_prices
where TOKEN_ADDRESS = '0xba2ae424d960c26247dd6c32edc70b295c744c43'
and date >= '2024-01-01'
group by 1
UNION
select date_trunc('day',HOUR) as date
, avg(PRICE)*25 as Price
, 'ETH*25' as Token
from ethereum.price.fact_hourly_token_prices
where TOKEN_ADDRESS = lower('0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2')
and date >= '2024-01-01'
group by 1
UNION
select date_trunc('day',HOUR) as date
, avg(PRICE) as Price
, 'BTC' as Token
from ethereum.price.fact_hourly_token_prices
where TOKEN_ADDRESS = lower('0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599')
and date >= '2024-01-01'
group by 1
QueryRunArchived: QueryRun has been archived