Fix identifier for strat

This commit is contained in:
2025-05-13 15:28:27 +07:00
parent 621a5a745e
commit 503a442c6b
2 changed files with 17 additions and 15 deletions

View File

@@ -422,7 +422,8 @@ public class DataController : ControllerBase
Wins = wins,
Losses = losses,
Positions = strategy.Positions.OrderByDescending(p => p.Date)
.ToList() // Include sorted positions with most recent first
.ToList(), // Include sorted positions with most recent first
Identifier = strategy.Identifier,
};
}