Order CLASS

Price PROPERTY (double)
Price at which the order is to be executed. SYNTAX public double Price { get; } EXAMPLE using System; using System.Collections; using System...
Sat, May 5, 2018 at 10:36 AM
RemoteId PROPERTY (string)
Order number as defined by the destination sent. SYNTAX public string RemoteId { get; } EXAMPLE using System; using System.Collections; usin...
Sat, May 5, 2018 at 10:37 AM
Side PROPERTY (Operation)
Type of trade to be executed (BUY or SELL). SYNTAX public Operation Side { get; } EXAMPLE using System; using System.Collections; using Syst...
Sat, May 5, 2018 at 10:44 AM
StopLimitPrice PROPERTY (double)
SYNTAX public double StopLimitPrice { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; using System.Text...
Sat, May 5, 2018 at 10:49 AM
StopLossOrder PROPERTY (Order)
Gets current stop-loss order or null if it isn't exist. SYNTAX public Order StopLossOrder { get; }
Sat, May 5, 2018 at 10:54 AM
TakeProfitOrder PROPERTY (Order)
Gets current take-profit order or null if it isn't exist. SYNTAX public Order TakeProfitOrder { get; }
Sat, May 5, 2018 at 10:55 AM
Time PROPERTY (DateTime)
Date and time when the order was placed. SYNTAX public DateTime Time { get; } EXAMPLE using System; using System.Collections; using System.C...
Sat, May 5, 2018 at 10:56 AM
TimeInForce PROPERTY (TimeInForce)
Order's Time-in-force. SYNTAX public TimeInForce TimeInForce { get; } EXAMPLE using System; using System.Collections; using System.Colle...
Sat, May 5, 2018 at 10:58 AM
Type PROPERTY (OrdersType)
The type of order. SYNTAX public OrdersType Type { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; ...
Sat, May 5, 2018 at 10:59 AM
Cancel () METHOD (Return: bool)
Cancels the order. SYNTAX public bool Cancel () RETURN bool true if operation was successful EXAMPLE using System; using System.Coll...
Sat, May 5, 2018 at 11:01 AM