flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Average monthly prices of RUNE for each month
Crypticyl
Average monthly prices of RUNE for each month
Updated 2024-06-09
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
DATE_TRUNC
(
'month'
,
BLOCK_TIMESTAMP
)
AS
month
,
AVG
(
PRICE_RUNE_ASSET
)
AS
average_price
FROM
thorchain
.
price
.
fact_prices
WHERE
DATE_PART
(
'year'
,
BLOCK_TIMESTAMP
)
=
2024
GROUP
BY
DATE_TRUNC
(
'month'
,
BLOCK_TIMESTAMP
)
ORDER
BY
month
;
Results
QueryRunArchived: QueryRun has been archived