flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
OSMO price
Madi
OSMO price
Updated 2023-01-03
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with
df
as
(
select
RECORDED_AT
as
date
,
PRICE
from
osmosis
.
core
.
dim_prices
where
symbol
=
'OSMO'
)
,
maxdate
as
(
select
max
(
date
)
from
df
)
select
round
(
price
,
2
)
as
price
from
(
select
PRICE
from
df
where
date
=
(
select
*
from
maxdate
)
)
Results
Run a query to Download Data