ReplaceOrderRequest CLASS
Value of the order in lots. SYNTAX public double? Amount { get; set; }
Sat, May 5, 2018 at 7:20 PM
Comment for the order. SYNTAX public string Comment { get; set; }
Sat, May 5, 2018 at 7:21 PM
The date of expiration order (for GTD orders). SYNTAX public DateTime? ExpirationTime { get; set; }
Sat, May 5, 2018 at 7:22 PM
The ID of the order which current order is bound to; if the former is executed, the system cancels the latter. Uses by OCO, StopLoss, TakeProfit or TrStop o...
Sat, May 5, 2018 at 7:23 PM
Price at which the order is to be executed. SYNTAX public double? Price { get; set; }
Sat, May 5, 2018 at 7:24 PM
Stop Price for the StopLimit order. SYNTAX public double? StopLimitPrice { get; set; }
Sat, May 5, 2018 at 7:25 PM
Order's Time-in-force. SYNTAX public TimeInForce? TimeInForce { get; set; }
Sat, May 5, 2018 at 7:26 PM
The type of order. SYNTAX public OrdersType? Type { get; set; }
Sat, May 5, 2018 at 7:27 PM
Creates empty request. SYNTAX public ReplaceOrderRequest ()
Sat, May 5, 2018 at 7:28 PM
Creates request for changing price. SYNTAX public ReplaceOrderRequest (double price) PARAMETERS price — double
Sat, May 5, 2018 at 7:29 PM