Add bundle backtest refact + fix whitelist

This commit is contained in:
2025-10-12 14:40:20 +07:00
parent 4543246871
commit 5acc77650f
21 changed files with 2961 additions and 628 deletions

View File

@@ -0,0 +1,13 @@
#nullable enable
namespace Managing.Domain.Backtests;
/// <summary>
/// Represents a money management variant for backtesting
/// </summary>
public class MoneyManagementVariant
{
/// <summary>
/// The money management details
/// </summary>
public MoneyManagementRequest MoneyManagement { get; set; } = new();
}