币安量化交易
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
936 B

using Binance.TradeRobot.Model.Base;
namespace Binance.TradeRobot.Model.Dto
{
public class BaseSingalRequest
{
public Enums.SingalType SingalType { get; set; }
/// <summary>
/// 交易对
/// </summary>
public string Symbol { get; set; }
public Enums.SignalPeriod KLinePeriodic { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 最高价
/// </summary>
public decimal HighestPrice { get; set; }
/// <summary>
/// 最低价
/// </summary>
public decimal LowestPrice { get; set; }
/// <summary>
/// 开盘价
/// </summary>
public decimal OpenPrice { get; set; }
/// <summary>
/// 收盘价
/// </summary>
public decimal ClosePrice { get; set; }
}
}