Fix bot running signal

This commit is contained in:
2025-11-18 23:02:38 +07:00
parent 68e9b2348c
commit 030a6b0eba
2 changed files with 3 additions and 21 deletions

View File

@@ -234,12 +234,12 @@ public class TradingBotBase : ITradingBot
// Update signals for live trading only
if (!Config.IsForBacktest)
{
await LoadLastCandle();
if (!Config.IsForCopyTrading)
{
await UpdateSignals();
}
await LoadLastCandle();
}
if (!Config.IsForWatchingOnly)