Class RichMarketEvent<T>
Enriched market events — derived signals (candles, VWAP, volatility) plus
pass-through for raw MarketEvent<T>s. Both flow through the
same act.market. / hyp.{selector}.market. topics since
they share the IMarketEvent<T> marker.
public abstract record RichMarketEvent<T> : IMarketEvent<T>, IEvent<T>, IEquatable<IEvent<T>>, IEquatable<RichMarketEvent<T>> where T : IComparable<T>
Type Parameters
TThe event's own time type.
- Inheritance
-
RichMarketEvent<T>
- Implements
-
IMarketEvent<T>IEvent<T>IEquatable<IEvent<T>>
- Derived
- Inherited Members
Properties
Symbol
The instrument the observation refers to.
public abstract Symbol Symbol { get; }
Property Value
Time
The time at which this event's fact occurred.
public abstract T Time { get; }
Property Value
- T