Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions public/dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ <h2>BTC Indicators</h2>
'DIA': '#f96',
'IWM': '#6f9',
'EFA': '#f69',
'CB': '#9cf',
'AVDV': '#cf9',
'ISRA': '#fc9',
};

/* ── helpers ── */
Expand Down Expand Up @@ -331,7 +334,7 @@ <h2>BTC Indicators</h2>
/* ── 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 = '<table><thead><tr><th>Instrument</th><th>Symbol</th><th style="text-align:right">Price</th><th style="text-align:right">Chg</th><th style="text-align:right">Chg %</th><th style="text-align:right">Open</th><th style="text-align:right">High</th><th style="text-align:right">Low</th><th style="text-align:right">Volume</th></tr></thead><tbody>';
for (const sym of syms) {
const q = D.quotes[sym];
Expand Down Expand Up @@ -359,7 +362,7 @@ <h2>BTC Indicators</h2>
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 = `<h2>Correlation Matrix (${RANGE_CFG[R].label})</h2><div class="corr"><table><thead><tr><th></th>`;
Expand All @@ -383,7 +386,7 @@ <h2>BTC Indicators</h2>
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
Expand Down
Loading