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.
28 lines
624 B
28 lines
624 B
3 years ago
|
using Binance.TradeRobot.Model.Base;
|
||
|
|
||
|
namespace Binance.TradeRobot.Model.Dto
|
||
|
{
|
||
|
public class AddPyramidPolicyRobotRequest : AddRobotRequest
|
||
|
{
|
||
|
/// <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; }
|
||
|
}
|
||
|
}
|