Fix backtest spot

This commit is contained in:
2025-12-03 16:47:32 +07:00
parent c932fef289
commit a07d7ede18
6 changed files with 56 additions and 44 deletions

View File

@@ -536,7 +536,7 @@ public class AgentGrain : Grain, IAgentGrain
}
// Check each bot for open positions
foreach (var botEntry in userBots)
foreach (var botEntry in userBots.Where(b => b.Status == BotStatus.Running))
{
try
{