Class OrderFilledEventArgs
Represents the event arguments sent in a TradeSubscription.OrderFilled callback
Inheritance
Object
EventArgs
OrderFilledEventArgs
Inherited Members
EventArgs.Empty
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class OrderFilledEventArgs : EventArgs
Remarks
OrderFilledEventArgs provides information about a filled order, including states of the order before and after the fill, whether the fill represents a full or partial fill, and access to all the data returned in the fill. To receive this information, you must register for the TradeSubscription.OrderFilled event.
Constructors
OrderFilledEventArgs(Fill, FillType, String, Order, Order)
Declaration
public OrderFilledEventArgs(Fill fill, FillType fillType, string message, Order newOrder, Order oldOrder)
Parameters
Type | Name | Description |
---|---|---|
Fill | fill | |
FillType | fillType | |
String | message | |
Order | newOrder | |
Order | oldOrder |
Properties
Fill
Declaration
public Fill Fill { get; }
Property Value
Type | Description |
---|---|
Fill |
FillType
Declaration
public FillType FillType { get; }
Property Value
Type | Description |
---|---|
FillType |
Message
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
String |
NewOrder
Declaration
public Order NewOrder { get; }
Property Value
Type | Description |
---|---|
Order |
OldOrder
Declaration
public Order OldOrder { get; }
Property Value
Type | Description |
---|---|
Order |
Methods
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Overrides
System.Object.ToString()