Update startup message in TradingBotBase to reflect strategy initiation; modify displayed information to include market type and remove scenario name for clarity.
This commit is contained in:
@@ -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") +
|
||||
|
||||
Reference in New Issue
Block a user