NewOrderRequest CLASS

Side PROPERTY (Operation)
Type of trade to be executed (BUY or SELL). SYNTAX public Operation Side { get; set; } EXAMPLE using System; using System.Collections; using...
Wed, May 2, 2018 at 8:03 PM
StopLossOffset PROPERTY (double)
Set price level of stop loss order. SYNTAX public double StopLossOffset { get; set; } EXAMPLE using System; using System.Collections; using ...
Wed, May 2, 2018 at 8:04 PM
StopPrice PROPERTY (double)
Stop Price for the StopLimit order. SYNTAX public double StopPrice { get; set; } EXAMPLE using System; using System.Collections; using Sy...
Wed, May 2, 2018 at 8:05 PM
TakeProfitOffset PROPERTY (double)
Set price level of take profit order. SYNTAX public double TakeProfitOffset { get; set; } EXAMPLE using System; using System.Collections; us...
Wed, May 2, 2018 at 8:07 PM
TimeInForce PROPERTY (TimeInForce)
Order's Time-in-force. SYNTAX public TimeInForce TimeInForce { get; set; } EXAMPLE using System; using System.Collections; using System....
Wed, May 2, 2018 at 8:08 PM
TrStopOffset PROPERTY (double)
Set offset in points to Trailing Stop order. SYNTAX public double TrStopOffset { get; set; } EXAMPLE using System; using System.Collections;...
Wed, May 2, 2018 at 8:09 PM
Type PROPERTY (OrdersType)
The type of order. SYNTAX public OrdersType Type { get; set; } EXAMPLE using System; using System.Collections; using System.Collections.Gene...
Wed, May 2, 2018 at 8:10 PM
NewOrderRequest () CONSTRUCTOR
Creates empty request. SYNTAX public NewOrderRequest () EXAMPLE The following example shows how to creates and initialize a new order reque...
Wed, May 2, 2018 at 8:31 PM
NewOrderRequest CONSTRUCTOR
(Instrument instrument, Operation side, double amount, double price, double stopPrice, OrdersType orderType, Account account, TimeInForce timeInForce, DateT...
Wed, May 2, 2018 at 8:41 PM
NewOrderRequest (Instrument instrument, Operation side, double amount, double price, double stopPrice, OrdersType orderType, Account account, TimeInForce timeInForce) CONSTRUCTOR
Creates request with all obligated parameters. SYNTAX public NewOrderRequest (Instrument instrument,Operation side,double amount,double price,double st...
Sat, May 5, 2018 at 9:21 AM