global: snapshot

This commit is contained in:
nym21
2026-03-15 00:57:53 +01:00
parent 0d177494d9
commit 9e36a4188a
50 changed files with 2765 additions and 1239 deletions

View File

@@ -98,8 +98,8 @@ export function createPricesSectionBasic({ cohort, title }) {
top: [price({ metric: tree.realized.price, name: "Realized", color })],
},
{
name: "Ratio",
title: title("Realized Price Ratio"),
name: "MVRV",
title: title("MVRV"),
bottom: [
baseline({
metric: tree.realized.mvrv,
@@ -109,6 +109,18 @@ export function createPricesSectionBasic({ cohort, title }) {
}),
],
},
{
name: "Price Ratio",
title: title("Realized Price Ratio"),
bottom: [
baseline({
metric: tree.realized.price.ratio,
name: "Price Ratio",
unit: Unit.ratio,
base: 1,
}),
],
},
],
},
],