obv 신호선

This commit is contained in:
Macbook
2026-06-09 01:06:35 +09:00
parent 8a2d8054ad
commit 1f0671aa7a
4 changed files with 69 additions and 9 deletions
+1 -1
View File
@@ -791,7 +791,7 @@ export class ChartManager {
const showSeriesTitle = pane < 2 && showPriceLabel;
series = this.chart.addSeries(LineSeries, {
color: plotDef.color,
lineWidth: (plotDef.lineWidth ?? 1) as 1 | 2 | 3 | 4,
lineWidth: Math.max(1, plotDef.lineWidth ?? 1) as 1 | 2 | 3 | 4,
lineStyle: plotSeriesLineStyle(plotDef.lineStyle),
priceLineVisible: false,
lastValueVisible: showPriceLabel,