Fill CLASS

PositionId PROPERTY (string)
Gets a unique number that the trade system assigns to each position. SYNTAX public string PositionId { get; } EXAMPLE An object ‘Fill’ is created ...
Mon, Apr 30, 2018 at 10:25 AM
Price PROPERTY (double)
Gets the price at which the trade took place. SYNTAX public double Price { get; } EXAMPLE An object ‘Fill’ is created in the following example....
Mon, Apr 30, 2018 at 10:29 AM
Profit PROPERTY (double)
Gets the Profit/Loss for the trade. SYNTAX public double Profit { get; } EXAMPLE An object ‘Fill’ is created in the following example. After cr...
Mon, Apr 30, 2018 at 10:33 AM
Side PROPERTY (Operation)
Gets the side of the trade (Buy or Sell). SYNTAX public Operation Side { get; } EXAMPLE An object ‘Fill’ is created in the following example. Afte...
Mon, Apr 30, 2018 at 10:36 AM
Time PROPERTY (DateTime)
Gets the time when the trade was made. SYNTAX public DateTime Time { get; } EXAMPLE An object ‘Fill’ is created in the following example. After cr...
Mon, Apr 30, 2018 at 10:39 AM
Type PROPERTY (OrdersType?)
Gets the order type with the help of which the trade was made. Type can be null. SYNTAX public OrdersType? Type { get; } EXAMPLE An object ‘Fil...
Mon, Apr 30, 2018 at 10:43 AM
GetHashCode () METHOD (Return: int)
Returns a hash code of current Fill object. SYNTAX public override int GetHashCode () RETURN   int
Mon, Apr 30, 2018 at 10:51 AM