mo115up/down
Updated 2022-03-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
select
count (case when price_usd > '52 ' then 'above 52'
ELSE NULL end )
from terra.oracle_prices
where block_timestamp > current_date -100
and hour(block_timestamp) = 0
and SYMBOL = 'LUNA'
union
select
count (case when price_usd < '52 ' then 'below 52'
ELSE NULL end )
from terra.oracle_prices
where block_timestamp > current_date -100
and hour(block_timestamp) = 0
and SYMBOL = 'LUNA'
Run a query to Download Data