Exemple #1
0
 public OrderEntry(
     OrderEntryType type,
     Money value,
     DateTimeOffset timestamp)
 {
     this.Type = type;
     this.Value = value;
     this.Timestamp = timestamp;
 }
Exemple #2
0
 public OrderEntry(
     OrderEntryType type,
     Money value,
     DateTimeOffset timestamp)
 {
     this.Type      = type;
     this.Value     = value;
     this.Timestamp = timestamp;
 }
Exemple #3
0
 public Order(OrderEntryType action, long id, Side side, long price, long size, int userId, int position)
 {
     Action   = action;
     Id       = id;
     Side     = side;
     Price    = price;
     Size     = size;
     UserId   = userId;
     Position = position;
 }
Exemple #4
0
 public Order(Order copy, OrderEntryType action)
 {
     Action   = action;
     Id       = copy.Id;
     Side     = copy.Side;
     Price    = copy.Price;
     Size     = copy.Size;
     UserId   = copy.UserId;
     Position = copy.Position;
 }