From aa8a723aad47de80ae9aa394243467b09aa02fe9 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Thu, 20 Nov 2025 22:14:44 +0700 Subject: [PATCH] Dont display indicators use on copied strategy --- src/Managing.Application/Bots/TradingBotBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Managing.Application/Bots/TradingBotBase.cs b/src/Managing.Application/Bots/TradingBotBase.cs index 0165e1ed..a1f3b8c9 100644 --- a/src/Managing.Application/Bots/TradingBotBase.cs +++ b/src/Managing.Application/Bots/TradingBotBase.cs @@ -103,7 +103,7 @@ public class TradingBotBase : ITradingBot $"🎮 Scenario: `{Config.Scenario?.Name ?? "Unknown"}`\n" + $"💰 Balance: `${Config.BotTradingBalance:F2}`\n" + $"👀 Mode: `{modeText}`\n\n" + - $"📈 Active Indicators: `{string.Join(", ", indicatorNames)}`\n\n" + + (Config.IsForCopyTrading ? "" : $"📈 Active Indicators: `{string.Join(", ", indicatorNames)}`\n\n") + $"✅ Ready to monitor signals and execute trades\n" + $"📢 Notifications will be sent when positions are triggered";