hessPrice Change Percentages Since January 1st
Updated 2023-01-20
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
33
34
35
36
›
⌄
-- Method Credit: https://app.flipsidecrypto.com/velocity/queries/ddf191e3-ba0c-4b6c-9e1f-18677a7dc9e0 || JackTheGuy
with previous_table as (
select symbol as Symbol1,
avg (price) as Previous_Price
from ethereum.core.fact_hourly_token_prices
where symbol in ('WETH','UNI','AAVE','WBTC','MATIC','LINK','WBNB','WAVAX','SUSHI')
and hour::date = '2023-01-01'
group by 1
union ALL
select symbol as Symbol1,
avg (close) as Previous_Price
from solana.core.fact_token_prices_hourly
where symbol in ('SOL')
and recorded_hour = '2023-01-01'
group by 1
union ALL
select symbol as Symbol1,
avg (price) as Previous_Price
from osmosis.core.dim_prices
where symbol in ('ATOM')
and recorded_at = '2023-01-01'
group by 1
union ALL
select symbol as symbol1,
avg (price_usd) as Previous_Price
from flow.core.fact_prices
where symbol in ('FLOW')
and timestamp = '2023-01-01'
group by 1)
Run a query to Download Data