AvgModel

定义

public class AvgModel

描述

均线实体

参数

参数名 类型 描述
Symbol string 股票代码
AvgPrice decimal 平均价格
Days Int32 平均天数

返回值

返回值 类型 描述
无返回值

示例

/// <summary>
/// 均线实体
/// </summary>
public class AvgModel
{
    /// <summary>
    /// 股票代码
    /// </summary>
    public required string Symbol { get; set; }
    /// <summary>
    /// 平均价格
    /// </summary>
    public decimal AvgPrice { get; set; }
    /// <summary>
    /// 平均天数
    /// </summary>
    public Int32 Days { get; set; }
}