Class OrderStatusEventArgs
- Namespace
- Balsam
- Assembly
- Balsam.Backtester.dll
Encapsulates order status information.
public class OrderStatusEventArgs : EventArgs
- Inheritance
-
OrderStatusEventArgs
- Derived
- Inherited Members
- Extension Methods
Constructors
OrderStatusEventArgs(Order)
Instantiates a new OrderStatusEventArgs object using the specified order.
public OrderStatusEventArgs(Order order)
Parameters
order
Order
Properties
Id
Gets the id.
public long Id { get; }
Property Value
Order
Gets the order.
public Order Order { get; }
Property Value
ParentId
Gets the parent id or null if the order is not a child order.
public long? ParentId { get; }
Property Value
- long?
Status
Gets the status of the order.
public OrderStatus Status { get; }
Property Value
Methods
ToString()
Returns a string representation of this object.
public override string ToString()