diff --git a/apps/backtest-report/components/TradingViewChart.tsx b/apps/backtest-report/components/TradingViewChart.tsx index cbfc5ee88..1d5c2a35a 100644 --- a/apps/backtest-report/components/TradingViewChart.tsx +++ b/apps/backtest-report/components/TradingViewChart.tsx @@ -650,7 +650,7 @@ const createOHLCLegendUpdater = (legend: HTMLDivElement, prefix: string) => { if (param) { legend.innerHTML = prefix + ` O: ${param.open} H: ${param.high} L: ${param.low} C: ${param.close} T: ${new Date(time * 1000)}`; } else { - legend.innerHTML = prefix + ' -'; + legend.innerHTML = prefix + ' O: - H: - L: - C: - T: -'; } } }