vegardUntitled Query
Updated 2022-11-23
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
›
⌄
with weth as (
select
hour::date as day,
avg(price) as price_eth
from ethereum.core.fact_hourly_token_prices
where symbol = 'WETH'
and hour::date >= '2022-11-01'
group by day
),
btc as (
select
hour::date as day,
avg(price) as price_btc
from ethereum.core.fact_hourly_token_prices
where symbol = 'WBTC'
and hour::date >= '2022-11-01'
group by day
),
ldo as (
select
hour::date as day,
avg(price) as price_ldo
from ethereum.core.fact_hourly_token_prices
where symbol = 'LDO'
and hour::date >= '2022-11-01'
group by day
),
sol as (
select recorded_hour::date as day,
avg (close) as price_sol
from solana.core.fact_token_prices_hourly
where symbol = 'SOL'
and day >= '2022-11-01'
Run a query to Download Data