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 = '| Instrument | Symbol | Price | Chg | Chg % | Open | High | Low | Volume |
';
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})
| `;
@@ -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
|---|