vegardOsmo liquid/stake ratio against price overtime
Updated 2022-10-25
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
›
⌄
with list1 as (
select date_trunc('day', date) date,
balance_type,
sum(balance/ power(10,6)) balance
from osmosis.core.fact_daily_balances
where balance_type in ('liquid', 'staked')
and currency = 'uosmo'
group by date, balance_type
),
list2 as (
select date_trunc('day', recorded_at) date,
avg(price) price
from osmosis.core.dim_prices
where symbol = 'OSMO'
group by date
),
list3 as (
select date, balance_type, balance, price
from list1 join list2
using (date)
order by date
)
select
date, liquid.balance as liquid_balance, stake.balance as stake_balance, liquid.price
from list3 liquid join list3 stake
using(date)
where 1 = 1
and liquid.price = stake.price
and liquid.balance_type = 'liquid'
and stake.balance_type = 'staked'
order by date
Run a query to Download Data