From 0411e43c0882076a35953f153d5af9f943d7dded Mon Sep 17 00:00:00 2001 From: Mukan Erkin Date: Sat, 25 Apr 2026 13:19:16 +0300 Subject: [PATCH] fix(mse): sell target lines silver to avoid confusion with support lines Co-Authored-By: Claude Sonnet 4.6 --- src/web/bot.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/bot.html b/src/web/bot.html index fd800e1..995c774 100644 --- a/src/web/bot.html +++ b/src/web/bot.html @@ -636,7 +636,7 @@ function updateChartOverlays() { priceLines = []; openPositionsCache.forEach(p => { priceLines.push(candleSeries.createPriceLine({ - price: p.sell_target, color: '#2ecc71', lineWidth: 1, + price: p.sell_target, color: '#aaaaaa', lineWidth: 1, lineStyle: LightweightCharts.LineStyle.Dashed, axisLabelVisible: true, title: fmt(p.sell_target), }));