ReplaceOrderRequest CLASS

Amount PROPERTY (double?)
Value of the order in lots. SYNTAX public double? Amount { get; set; }
Sat, May 5, 2018 at 7:20 PM
Comment PROPERTY (string)
Comment for the order. SYNTAX public string Comment { get; set; }
Sat, May 5, 2018 at 7:21 PM
ExpirationTime PROPERTY (DateTime?)
The date of expiration order (for GTD orders). SYNTAX public DateTime? ExpirationTime { get; set; }
Sat, May 5, 2018 at 7:22 PM
LinkedTo PROPERTY (string)
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 PROPERTY (double?)
Price at which the order is to be executed. SYNTAX public double? Price { get; set; }
Sat, May 5, 2018 at 7:24 PM
StopLimitPrice PROPERTY (double?)
Stop Price for the StopLimit order. SYNTAX public double? StopLimitPrice { get; set; }
Sat, May 5, 2018 at 7:25 PM
TimeInForce PROPERTY (TimeInForce?)
Order's Time-in-force. SYNTAX public TimeInForce? TimeInForce { get; set; }
Sat, May 5, 2018 at 7:26 PM
Type PROPERTY (OrdersType?)
The type of order. SYNTAX public OrdersType? Type { get; set; }
Sat, May 5, 2018 at 7:27 PM
ReplaceOrderRequest () CONSTRUCTOR
Creates empty request. SYNTAX public ReplaceOrderRequest ()
Sat, May 5, 2018 at 7:28 PM
ReplaceOrderRequest (double price) CONSTRUCTOR
Creates request for changing price. SYNTAX public ReplaceOrderRequest (double price) PARAMETERS price — double
Sat, May 5, 2018 at 7:29 PM