Show / Hide Table of Contents

Struct TimeAndSalesData

A time and sales data.

Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetType()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public struct TimeAndSalesData

Fields

Empty

Declaration
public static TimeAndSalesData Empty
Field Value
Type Description
TimeAndSalesData

Properties

DirectAskCounterparty

Gets the direct ask counterparty.

Declaration
[Obsolete("DirectAskCounterparty will be removed in a future release. Please use DirectAskCounterpartyId instead. ")]
public Price DirectAskCounterparty { get; }
Property Value
Type Description
Price

The direct ask counterparty.

DirectAskCounterpartyId

Gets the id of the direct ask counterparty.

Declaration
public uint DirectAskCounterpartyId { get; }
Property Value
Type Description
uint

The direct ask counterparty id.

DirectBidCounterparty

Gets the direct bid counterparty.

Declaration
[Obsolete("DirectBidCounterparty will be removed in a future release. Please use DirectBidCounterpartyId instead. ")]
public Price DirectBidCounterparty { get; }
Property Value
Type Description
Price

The direct bid counterparty.

DirectBidCounterpartyId

Gets the direct bid counterparty.

Declaration
public uint DirectBidCounterpartyId { get; }
Property Value
Type Description
uint

The direct bid counterparty.

Direction

Gets the direction.

Declaration
public TradeDirection Direction { get; }
Property Value
Type Description
TradeDirection

The direction.

EpochTimestamp

Gets the linux epoch time stamp (microseconds).

Declaration
public ulong EpochTimestamp { get; }
Property Value
Type Description
ulong

The linux epoch time stamp (microseconds).

Instrument

Gets the instrument.

Declaration
public Instrument Instrument { get; }
Property Value
Type Description
Instrument

The instrument.

IsImplied

Gets a value indicating whether this object is an implied trade.

Declaration
public bool IsImplied { get; }
Property Value
Type Description
bool

True if this object is an implied trade, false if not.

IsLegTrade

Gets a value indicating whether this object is a leg trade.

Declaration
public bool IsLegTrade { get; }
Property Value
Type Description
bool

True if this object is a leg trade, false if not.

IsOverTheCounter

Gets a value indicating whether this object is over the counter.

Declaration
public bool IsOverTheCounter { get; }
Property Value
Type Description
bool

True if this object is over the counter, false if not.

OTCTradeType

Gets the otc trade type.

Declaration
public ExchSupportedOTCTypes OTCTradeType { get; }
Property Value
Type Description
ExchSupportedOTCTypes

The otc trade type.

TimeStamp

Gets the Date/Time of the time stamp.

Declaration
public DateTime TimeStamp { get; }
Property Value
Type Description
DateTime

The time stamp.

TradePrice

Gets the trade price.

Declaration
public Price TradePrice { get; }
Property Value
Type Description
Price

The trade price.

TradeQuantity

Gets the trade quantity.

Declaration
public Quantity TradeQuantity { get; }
Property Value
Type Description
Quantity

The trade quantity.

Methods

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
ValueType.ToString()
In this article
Back to top