示例#1
0
        public OwnTradeReply(OwnTradeSource source, DateTime dateTime,
                             long tradeId, long orderId, int price, int quantity)
        {
            this.Type = TraderReplyType.OwnTrade;

            this.Source   = source;
            this.DateTime = dateTime;
            this.TradeId  = tradeId;
            this.OrderId  = orderId;
            this.Price    = price;
            this.Quantity = quantity;
        }
    public OwnTradeReply(OwnTradeSource source, DateTime dateTime,
      long tradeId, long orderId, int price, int quantity)
    {
      this.Type = TraderReplyType.OwnTrade;

      this.Source = source;
      this.DateTime = dateTime;
      this.TradeId = tradeId;
      this.OrderId = orderId;
      this.Price = price;
      this.Quantity = quantity;
    }