- GetNavHistoryAsync现在会自动检查是否有历史数据 - 无历史数据时自动调用BackfillNavHistoryInternalAsync - 拆分内部回填方法,避免重复验证权限
22 lines
477 B
C#
Executable File
22 lines
477 B
C#
Executable File
namespace AssetManager.Models.DTOs;
|
|
|
|
/// <summary>
|
|
/// 策略类型常量
|
|
/// </summary>
|
|
public static class StrategyType
|
|
{
|
|
/// <summary>
|
|
/// 均线趋势策略
|
|
/// </summary>
|
|
public const string MaTrend = "ma_trend";
|
|
|
|
/// <summary>
|
|
/// 吊灯止损策略
|
|
/// </summary>
|
|
public const string ChandelierExit = "chandelier_exit";
|
|
|
|
/// <summary>
|
|
/// 风险平价策略
|
|
/// </summary>
|
|
public const string RiskParity = "risk_parity";
|
|
} |