币安量化交易
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.

29 lines
640 B

using Binance.TradeRobot.Model.Base;
namespace Binance.TradeRobot.Model.Dto
{
public class EditPyramidPolicyRequest
{
public long Id { get; set; }
/// <summary>
/// 信号周期
/// </summary>
public Enums.SignalPeriod SignalPeriod { get; set; }
/// <summary>
/// 杠杆倍数
/// </summary>
public int Leverage { get; set; }
/// <summary>
/// 仓位
/// </summary>
public decimal Position { get; set; }
/// <summary>
/// 金字塔
/// </summary>
public int Pyramid { get; set; }
}
}