Remove text from backtestSpot

This commit is contained in:
2025-12-26 04:49:47 +07:00
parent f60277d81d
commit f884cb2362

View File

@@ -46,19 +46,11 @@ public class BacktestSpotBot : TradingBotBase, ITradingBot
public override async Task Run()
{
// Backtest signal update is handled in BacktestExecutor loop
// No need to call UpdateSignals() here
if (!Config.IsForWatchingOnly)
await ManagePositions();
UpdateWalletBalances();
// Backtest logging - simplified, no account dependency
ExecutionCount++;
Logger.LogInformation(
"[BacktestSpot][{BotName}] Execution {ExecutionCount} - LastCandleDate: {LastCandleDate}, Signals: {SignalCount}, Positions: {PositionCount}",
Config.Name, ExecutionCount, LastCandle?.Date, Signals.Count, Positions.Count);
}
protected override async Task<Position> GetInternalPositionForUpdate(Position position)