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";