Class MarketEvent<T>.TickReceived
Best bid/ask update from the feed.
public sealed record MarketEvent<T>.TickReceived : MarketEvent<T>, IMarketEvent<T>, IEvent<T>, IEquatable<IEvent<T>>, IEquatable<MarketEvent<T>>, IEquatable<MarketEvent<T>.TickReceived>
- Inheritance
-
MarketEvent<T>MarketEvent<T>.TickReceived
- Implements
-
IMarketEvent<T>IEvent<T>IEquatable<IEvent<T>>
- Inherited Members
Constructors
TickReceived(Symbol, DecimalAmount, DecimalAmount, DecimalAmount?, T)
Construct a TickReceived event.
public TickReceived(Symbol symbol, DecimalAmount bid, DecimalAmount ask, DecimalAmount? lastPrice, T tickTime)
Parameters
symbolSymbolbidDecimalAmountaskDecimalAmountlastPriceDecimalAmount?tickTimeT
Properties
Ask
Best ask price.
public DecimalAmount Ask { get; }
Property Value
Bid
Best bid price.
public DecimalAmount Bid { get; }
Property Value
LastPrice
Optional last trade price.
public DecimalAmount? LastPrice { get; }
Property Value
Symbol
The instrument the observation refers to.
public override Symbol Symbol { get; }
Property Value
TickTime
Time of the tick.
public T TickTime { get; }
Property Value
- T
Time
The time at which this event's fact occurred.
public override T Time { get; }
Property Value
- T