Class Summary
Summary information snapshot about the trading session including session highs, lows, etc.
It represents the most recent information that is available about the trading session in
the market at any given moment of time.
For more details see Javadoc.
[EventCode(EventCodeNative.Summary)]
public class Summary : MarketEvent, ILastingEvent, IEventType
- Inheritance
-
Summary
- Implements
- Inherited Members
Constructors
Summary()
Initializes a new instance of the Summary class.
public Summary()
Summary(string?)
Initializes a new instance of the Summary class with the specified event symbol.
public Summary(string? eventSymbol)
Parameters
eventSymbol
stringThe specified event symbol.
Properties
DayClosePrice
Gets or sets the last (close) price for the day.
public double DayClosePrice { get; set; }
Property Value
DayClosePriceType
Gets or sets the price type of the last (close) price for the day.
public PriceType DayClosePriceType { get; set; }
Property Value
DayHighPrice
Gets or sets the maximal (high) price for the day.
public double DayHighPrice { get; set; }
Property Value
DayId
Gets or sets identifier of the day that this summary represents. Identifier of the day is the number of days passed since January 1, 1970.
public int DayId { get; set; }
Property Value
DayLowPrice
Gets or sets the minimal (low) price for the day.
public double DayLowPrice { get; set; }
Property Value
DayOpenPrice
Gets or sets the first (open) price for the day.
public double DayOpenPrice { get; set; }
Property Value
OpenInterest
Gets or sets open interest of the symbol as the number of open contracts.
public long OpenInterest { get; set; }
Property Value
PrevDayClosePrice
Gets or sets the last (close) price for the previous day.
public double PrevDayClosePrice { get; set; }
Property Value
PrevDayClosePriceType
Gets or sets the price type of the last (close) price for the previous day.
public PriceType PrevDayClosePriceType { get; set; }
Property Value
PrevDayId
Gets or sets identifier of the previous day that this summary represents. Identifier of the day is the number of days passed since January 1, 1970.
public int PrevDayId { get; set; }
Property Value
PrevDayVolume
Gets or sets total volume traded for the previous day.
public double PrevDayVolume { get; set; }
Property Value
Methods
ToString()
Returns string representation of this summary event.
public override string ToString()
Returns
- string
The string representation.