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.
22 lines
538 B
22 lines
538 B
using Binance.TradeRobot.Model.Db;
|
|
|
|
namespace Binance.TradeRobot.Model.Dto
|
|
{
|
|
public class RobotAccountResponse : RobotAccount
|
|
{
|
|
/// <summary>
|
|
/// 近5次交易盈亏
|
|
/// </summary>
|
|
public decimal FiveTimesProfit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 近10次交易盈亏
|
|
/// </summary>
|
|
public decimal TenTimesProfit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 浮动盈亏
|
|
/// </summary>
|
|
public decimal FloatingProfitAndLoss { get; set; }
|
|
}
|
|
}
|
|
|