Order CLASS
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
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
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
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
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
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
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
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
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
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