From f12e173254fe725dbc3c9e399c5e1b6a68032807 Mon Sep 17 00:00:00 2001 From: c9s Date: Mon, 27 Jun 2022 16:40:04 +0800 Subject: [PATCH] backtest: remove debug log Signed-off-by: c9s --- apps/backtest-report/components/TradingViewChart.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/backtest-report/components/TradingViewChart.tsx b/apps/backtest-report/components/TradingViewChart.tsx index f987c4b5c..cbfc5ee88 100644 --- a/apps/backtest-report/components/TradingViewChart.tsx +++ b/apps/backtest-report/components/TradingViewChart.tsx @@ -647,7 +647,6 @@ const createLegendUpdater = (legend: HTMLDivElement, prefix: string) => { const createOHLCLegendUpdater = (legend: HTMLDivElement, prefix: string) => { return (param: any, time : any) => { - console.log(param) if (param) { legend.innerHTML = prefix + ` O: ${param.open} H: ${param.high} L: ${param.low} C: ${param.close} T: ${new Date(time * 1000)}`; } else {