From 278a9e90e722290382e36da8aa15e92cf60481aa Mon Sep 17 00:00:00 2001 From: c9s Date: Mon, 27 Jun 2022 14:38:11 +0800 Subject: [PATCH] disable lastValueVisible --- apps/backtest-report/components/TradingViewChart.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/backtest-report/components/TradingViewChart.tsx b/apps/backtest-report/components/TradingViewChart.tsx index 0bd5321f9..f3193781e 100644 --- a/apps/backtest-report/components/TradingViewChart.tsx +++ b/apps/backtest-report/components/TradingViewChart.tsx @@ -466,6 +466,7 @@ const TradingViewChart = (props: TradingViewChartProps) => { const emaLine = chart.current.addLineSeries({ color: emaColor, lineWidth: 1, + lastValueVisible: false, }); emaLine.setData(emaValues);