strawbettyALGO price from May
Updated 2022-06-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
with algo_price as (select block_hour::date as date, asset_id, asset_name, avg(price_usd) as algo_price
from flipside_prod_db.algorand.prices_swap
where date>= '2022-04-01'
and asset_id = 0
group by 1),
btc_price as (
select hour::date as date,
avg(price) as btc_price
from flipside_prod_db.ethereum_core.fact_hourly_token_prices
where symbol = 'WBTC'
and date >= '2022-04-01'
group by 1
)
select
*
from algo_price b join btc_price e on b.date=e.date
order by 1
Run a query to Download Data