Dont display indicators use on copied strategy

This commit is contained in:
2025-11-20 22:14:44 +07:00
parent 4d4e5b6d25
commit aa8a723aad

View File

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