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

38 lines
1010 B

namespace Binance.TradeRobot.Model.Dto
{
public class ExchangeAPIKeyResponse : Db.ExchangeAPIKey
{
3 years ago
/// <summary>
3 years ago
/// 基础币金额(标的数量)
3 years ago
/// </summary>
3 years ago
public decimal BaseAmount { get; set; }
/// <summary>
/// 报价币金额(USDT)(可转资金)
/// </summary>
public decimal QuoteAmount { get; set; }
/// <summary>
/// 报价币借款金额(USDT)
/// </summary>
public decimal QuoteLoanAmount { get; set; }
/// <summary>
/// 报价币净资产(USDT)(不含借款)
/// </summary>
public decimal QuoteNetAmount { get; set; }
3 years ago
/// <summary>
/// 关联机器人的交易对
/// </summary>
public string RobotSymbol { get; set; }
}
public class SimpleExchangeAPIKeyResponse
{
public long AccountId { get; set; }
public string APIKey { get; set; }
public string SecretKey { get; set; }
}
}