예제 #1
0
 public DynamicOrderState(OrderID id, PriceValue trailingStopValue, PriceValue triggerDistance, bool isTriggerDistanceExact)
 {
     this.Id = id;
     this.TrailingStopValue      = trailingStopValue;
     this.TriggerDistance        = triggerDistance;
     this.IsTriggerDistanceExact = isTriggerDistanceExact;
 }
예제 #2
0
 public OrderIdentifier()
 {
     this.OrderID       = new OrderID();
     this.ClientOrderID = new ClientID();
 }
예제 #3
0
 public OrderIdentifier(OrderID orderID, ClientID clientOrderID)
 {
     this.OrderID       = orderID;
     this.ClientOrderID = clientOrderID;
 }
예제 #4
0
 public DynamicOrderState()
 {
     this.Id = new OrderID();
     this.TrailingStopValue = new PriceValue();
     this.TriggerDistance   = new PriceValue();
 }