Fill CLASS
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
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
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
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
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
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
Returns a hash code of current Fill object. SYNTAX public override int GetHashCode () RETURN int
Mon, Apr 30, 2018 at 10:51 AM