Rename strategy to indicators

This commit is contained in:
2025-06-16 22:09:23 +07:00
parent e4f4d078b2
commit 0f7df04813
45 changed files with 477 additions and 474 deletions

View File

@@ -249,12 +249,12 @@ public class RunBacktestRequest
public bool Save { get; set; } = false;
/// <summary>
/// The name of the money management strategy to use (optional if MoneyManagement is provided)
/// The name of the money management to use (optional if MoneyManagement is provided)
/// </summary>
public string? MoneyManagementName { get; set; }
/// <summary>
/// The money management strategy details (optional if MoneyManagementName is provided)
/// The money management details (optional if MoneyManagementName is provided)
/// </summary>
public MoneyManagement? MoneyManagement { get; set; }
}