From 329c56fc4d900ffd962a7ca4eb4fa1f50845926d Mon Sep 17 00:00:00 2001 From: vlad zverzhkhovskiy Date: Mon, 29 Sep 2025 16:07:01 +0300 Subject: [PATCH] =?UTF-8?q?=D1=81=D1=82=D0=BE=D0=BF=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- KLHZ.Trader.Core/Exchange/Services/Trader.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/KLHZ.Trader.Core/Exchange/Services/Trader.cs b/KLHZ.Trader.Core/Exchange/Services/Trader.cs index a851efe..badd7a2 100644 --- a/KLHZ.Trader.Core/Exchange/Services/Trader.cs +++ b/KLHZ.Trader.Core/Exchange/Services/Trader.cs @@ -955,7 +955,7 @@ INewPrice message, int windowMaxSize, decimal uptrendStartingDetectionMeanfullSt } if (mode == TradingMode.Growing && type == PositionType.Short) { - stopLossShift = 4; + stopLossShift = 10; takeProfitShift = 2; } if (mode == TradingMode.Stable && type == PositionType.Long) @@ -965,7 +965,7 @@ INewPrice message, int windowMaxSize, decimal uptrendStartingDetectionMeanfullSt if (mode == TradingMode.Stable && type == PositionType.Short) { takeProfitShift = 2.5m; - stopLossShift = 6; + stopLossShift = 10; } if (mode == TradingMode.SlowDropping && type == PositionType.Short) { @@ -974,7 +974,7 @@ INewPrice message, int windowMaxSize, decimal uptrendStartingDetectionMeanfullSt if (mode == TradingMode.SlowDropping && type == PositionType.Long) { takeProfitShift = 1.5m; - stopLossShift = 5; + stopLossShift = 10; } if (mode == TradingMode.Dropping && type == PositionType.Short) { @@ -982,7 +982,7 @@ INewPrice message, int windowMaxSize, decimal uptrendStartingDetectionMeanfullSt } if (mode == TradingMode.Dropping && type == PositionType.Long) { - stopLossShift = 4; + stopLossShift = 10; takeProfitShift = 1.5m; } return (stopLossShift, takeProfitShift);