Fix redundant recover position call

This commit is contained in:
2025-11-19 20:42:11 +07:00
parent f56d75d28f
commit e1f2f75c23
2 changed files with 3 additions and 3 deletions

View File

@@ -561,7 +561,7 @@ public class BacktestExecutor
{
try
{
if (backtest.Score > 60)
if (backtest.Score > 65 && backtest.Statistics.SharpeRatio >= 0.01m)
{
await _messengerService.SendBacktestNotification(backtest);
}