From f1df1a06e230b8e33a7acf926760aec361ae9f25 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Wed, 15 Oct 2025 23:11:01 +0700 Subject: [PATCH] Add more log during cooldown --- 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 3ac6fa91..dda30177 100644 --- a/src/Managing.Application/Bots/TradingBotBase.cs +++ b/src/Managing.Application/Bots/TradingBotBase.cs @@ -2383,7 +2383,7 @@ public class TradingBotBase : ITradingBot var remainingTime = cooldownEndTime - LastCandle.Date; Logger.LogWarning( - $"⏳ Cooldown Period Active\n" + + $"⏳ [{Account.User.AgentName}-{Config.Name}] Cooldown Period Active\n" + $"Cannot open new positions\n" + $"Last position closed: `{LastPositionClosingTime:HH:mm:ss}`\n" + $"Cooldown period: `{Config.CooldownPeriod}` candles\n" +