Struct FillData
- Namespace
- WhalesSecret.TradeScriptLib.API.TradingV1.Orders
- Assembly
- WhalesSecret.TradeScriptLib.dll
Order's fill information at a certain point of time.
public readonly struct FillData : IEquatable<FillData>
- Implements
- Inherited Members
- Extension Methods
Properties
- CumulativeAveragePrice
Average execution price of the order filled size, or
null
if either:- the information is not provided by the corresponding exchange, or
- CumulativeSize is equal to
0
.
- CumulativeSize
Cumulative filled size of the order.
- ImpliedFill
false
if the LastSize denotes a single trade,true
if LastSize might denote multiple (partial) fills.
- LastAveragePrice
Last average execution price of the last executed size, or
null
if either:- the information is not provided by the corresponding exchange, or
- LastSize is equal to
0
.
- LastFee
Fee associated with the last trade, or
null
if not available.
- LastSize
Last filled size of the order in base symbol.
Methods
- Equals(object?)
Indicates whether this instance and a specified object are equal.
- Equals(FillData)
Indicates whether the current object is equal to another object of the same type.
- GetHashCode()
Returns the hash code for this instance.
- ToString()
Returns the fully qualified type name of this instance.
Operators
- operator ==(FillData, FillData)
Determines whether two specified fill data objects have the same value.
- operator !=(FillData, FillData)
Determines whether two specified fill data objects have different values.