재수정완료
This commit is contained in:
@@ -911,6 +911,14 @@ export class ChartManager {
|
||||
}, pane);
|
||||
series.setData(filtered.map(p => ({ time: p.time as Time, value: p.value })));
|
||||
seriesMeta.push({ plotId: plotDef.id, isHistogram: false, color: plotDef.color });
|
||||
|
||||
// OBV 디버그: 마지막 5개 값 출력
|
||||
if (config.type === 'OBV') {
|
||||
const last5 = filtered.slice(-5).map(p => p.value.toFixed(2));
|
||||
const minV = Math.min(...filtered.map(p => p.value));
|
||||
const maxV = Math.max(...filtered.map(p => p.value));
|
||||
console.warn(`[OBV-DATA] ${plotDef.id} | last5=${last5.join(',')} | min=${minV.toFixed(2)} max=${maxV.toFixed(2)} | totalPts=${filtered.length}`);
|
||||
}
|
||||
}
|
||||
|
||||
seriesList.push(series);
|
||||
|
||||
Reference in New Issue
Block a user