internal NativeOrderBase(IDxOrderBase order) : base(order.EventSymbol)
 {
     EventFlags   = order.EventFlags;
     Index        = order.Index;
     Time         = order.Time;
     TimeNanoPart = order.TimeNanoPart;
     Sequence     = order.Sequence;
     Price        = order.Price;
     Size         = order.Size;
     Count        = order.Count;
     Scope        = order.Scope;
     Side         = order.Side;
     ExchangeCode = order.ExchangeCode;
     Source       = order.Source;
 }
示例#2
0
 internal NativeOrderBase(IDxOrderBase order) : base(order.EventSymbol)
 {
     Source       = order.Source;
     EventFlags   = order.EventFlags;
     Index        = order.Index;
     Time         = order.Time;
     Sequence     = order.Sequence;
     TimeNanoPart = order.TimeNanoPart;
     Action       = order.Action;
     ActionTime   = order.ActionTime;
     OrderId      = order.OrderId;
     AuxOrderId   = order.AuxOrderId;
     Price        = order.Price;
     Size         = order.Size;
     Count        = order.Count;
     TradeId      = order.TradeId;
     TradePrice   = order.TradePrice;
     TradeSize    = order.TradeSize;
     ExchangeCode = order.ExchangeCode;
     Side         = order.Side;
     Scope        = order.Scope;
 }