From 197cbbc1acdb1fb452fcb92f6f338d8cc3e4d7f6 Mon Sep 17 00:00:00 2001 From: Jason Bian Date: Sun, 15 Mar 2026 01:20:58 -0400 Subject: [PATCH] Add CB, AVDV, and ISRA to dashboard instruments Added support for three new ETF/stock instruments: Chubb Limited (CB), Avantis International Small Cap Value (AVDV), and VanEck Israel (ISRA). Updated color palette and added to instrument table, correlation matrix, and movement chart displays. Co-Authored-By: Claude Haiku 4.5 --- public/dashboard/index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/dashboard/index.html b/public/dashboard/index.html index fb82fe5..91ee868 100644 --- a/public/dashboard/index.html +++ b/public/dashboard/index.html @@ -230,6 +230,9 @@

BTC Indicators

'DIA': '#f96', 'IWM': '#6f9', 'EFA': '#f69', + 'CB': '#9cf', + 'AVDV': '#cf9', + 'ISRA': '#fc9', }; /* ── helpers ── */ @@ -331,7 +334,7 @@

BTC Indicators

/* ── render instrument table ── */ function renderTable() { const el = document.getElementById('instTable'); - const syms = ['BTC','BTC/USD','QQQ','SPY','GLD','DIA','IWM','EFA']; + const syms = ['BTC','BTC/USD','QQQ','SPY','GLD','DIA','IWM','EFA','CB','AVDV','ISRA']; let html = ''; for (const sym of syms) { const q = D.quotes[sym]; @@ -359,7 +362,7 @@

BTC Indicators

const wrap = document.getElementById('corrWrap'); const wKey = CORR_WINDOW[R] || '5'; const cData = (D.correlations || {})[wKey] || {}; - const ref = ['QQQ','SPY','GLD','DIA','IWM','EFA']; + const ref = ['QQQ','SPY','GLD','DIA','IWM','EFA','CB','AVDV','ISRA']; const focus = ['BTC','BTC/USD']; let html = `

Correlation Matrix (${RANGE_CFG[R].label})

InstrumentSymbolPriceChgChg %OpenHighLowVolume
`; @@ -383,7 +386,7 @@

BTC Indicators

function renderMoveChart() { const cfg = RANGE_CFG[R]; const sourceKey = cfg.useHourly ? 'hourly' : 'daily'; - const syms = ['BTC/USD','QQQ','SPY','GLD','DIA','IWM','EFA']; + const syms = ['BTC/USD','QQQ','SPY','GLD','DIA','IWM','EFA','CB','AVDV','ISRA']; const datasets = []; // Store base prices for right-axis price labels