Add BacktestCount
This commit is contained in:
@@ -610,6 +610,7 @@ public class DataController : ControllerBase
|
||||
TotalVolume = agentSummary.TotalVolume,
|
||||
TotalBalance = agentSummary.TotalBalance,
|
||||
TotalFees = agentSummary.TotalFees,
|
||||
BacktestCount = agentSummary.BacktestCount,
|
||||
};
|
||||
|
||||
agentSummaryViewModels.Add(agentSummaryViewModel);
|
||||
|
||||
@@ -57,6 +57,11 @@ namespace Managing.Api.Models.Responses
|
||||
/// Total fees paid by this agent across all positions
|
||||
/// </summary>
|
||||
public decimal TotalFees { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Total number of backtests run by this agent
|
||||
/// </summary>
|
||||
public int BacktestCount { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user