heatmaps: part 9

This commit is contained in:
nym21
2026-05-31 23:35:19 +02:00
parent 7860c5a8bd
commit 3b7734a61a
8 changed files with 321 additions and 32 deletions
+11 -1
View File
@@ -26,6 +26,10 @@ import { createMiningSection } from "./mining.js";
import { createCointimeSection } from "./cointime.js";
import { createInvestingSection } from "./investing.js";
import { demoHeatmapOption } from "../../src/heatmap/demo.js";
import {
oracleEmaHeatmapOption,
oracleRawHeatmapOption,
} from "../../src/heatmap/oracle.js";
// Re-export types for external consumers
export * from "./types.js";
@@ -299,7 +303,13 @@ export function createPartialOptions() {
{
name: "Heatmaps",
tree: [demoHeatmapOption],
tree: [
demoHeatmapOption,
{
name: "Oracle",
tree: [oracleRawHeatmapOption, oracleEmaHeatmapOption],
},
],
},
{