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

45 lines
1.1 KiB

3 years ago
using Binance.TradeRobot.Model.Base;
using System;
using System.Collections.Generic;
using System.Text;
namespace SDKAdapter.Model
{
public class SpotOrderTradePublishInfo
{
public Enums.Exchange Exchange { get; set; }
public long AccountId { get; set; }
public long OrderId { get; set; }
public string ClientOrderId { get; set; }
public string Symbol { get; set; }
public Enums.TradeDirection TradeDirection { get; set; }
public Enums.OrderType OrderType { get; set; }
public Enums.SpotOrderState SpotOrderState { get; set; }
public decimal LastTradePrice { get; set; }
public decimal LastTradeAmount { get; set; }
public decimal LastTradeQuantity { get; set; }
public decimal Fee { get; set; }
public string FeeUnit { get; set; }
public decimal CummulativeTradeAmount { get; set; }
public decimal CummulativeTradeQuantity { get; set; }
public DateTime CreateTime { get; set; }
public DateTime LastTradeTime { get; set; }
}
}