From 96dd9086c57b41b2c101714380720b07dd7d4408 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Fri, 26 Dec 2025 16:54:47 +0700 Subject: [PATCH] Update startup message in TradingBotBase to reflect strategy initiation; modify displayed information to include market type and remove scenario name for clarity. --- src/Managing.Application/Bots/TradingBotBase.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Managing.Application/Bots/TradingBotBase.cs b/src/Managing.Application/Bots/TradingBotBase.cs index f90d8316..68747a17 100644 --- a/src/Managing.Application/Bots/TradingBotBase.cs +++ b/src/Managing.Application/Bots/TradingBotBase.cs @@ -92,13 +92,12 @@ public abstract class TradingBotBase : ITradingBot var modeText = Config.IsForWatchingOnly ? "Watch Only" : Config.IsForCopyTrading ? "Copy Trading" : "Live Trading"; - var startupMessage = $"🚀 Bot Started Successfully\n\n" + + var startupMessage = $"🚀 Strategy Started Successfully\n\n" + $"📊 Trading Setup:\n" + $"🎯 Ticker: `{Config.Ticker}`\n" + $"⏰ Timeframe: `{Config.Timeframe}`\n" + - $"🎮 Scenario: `{Config.Scenario?.Name ?? "Unknown"}`\n" + $"💰 Balance: `${Config.BotTradingBalance:F2}`\n" + - $"👀 Mode: `{modeText}`\n\n" + + $"👀 Market type: `{Config.TradingType.ToString()}`\n\n" + (Config.IsForCopyTrading ? "" : $"📈 Active Indicators: `{string.Join(", ", indicatorNames)}`\n\n") +