fix(mse): sell target lines silver to avoid confusion with support lines

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mukan Erkin TÖRÜK 2026-04-25 13:19:16 +03:00
parent 43f1eb9c6e
commit 0411e43c08

View file

@ -636,7 +636,7 @@ function updateChartOverlays() {
priceLines = []; priceLines = [];
openPositionsCache.forEach(p => { openPositionsCache.forEach(p => {
priceLines.push(candleSeries.createPriceLine({ priceLines.push(candleSeries.createPriceLine({
price: p.sell_target, color: '#2ecc71', lineWidth: 1, price: p.sell_target, color: '#aaaaaa', lineWidth: 1,
lineStyle: LightweightCharts.LineStyle.Dashed, lineStyle: LightweightCharts.LineStyle.Dashed,
axisLabelVisible: true, title: fmt(p.sell_target), axisLabelVisible: true, title: fmt(p.sell_target),
})); }));