Table of Contents

Class Summary

Namespace
DxFeed.Graal.Net.Events.Market
Assembly
DxFeed.Graal.Net.dll

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 string

The specified event symbol.

Properties

DayClosePrice

Gets or sets the last (close) price for the day.

public double DayClosePrice { get; set; }

Property Value

double

DayClosePriceType

Gets or sets the price type of the last (close) price for the day.

public PriceType DayClosePriceType { get; set; }

Property Value

PriceType

DayHighPrice

Gets or sets the maximal (high) price for the day.

public double DayHighPrice { get; set; }

Property Value

double

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

int

DayLowPrice

Gets or sets the minimal (low) price for the day.

public double DayLowPrice { get; set; }

Property Value

double

DayOpenPrice

Gets or sets the first (open) price for the day.

public double DayOpenPrice { get; set; }

Property Value

double

OpenInterest

Gets or sets open interest of the symbol as the number of open contracts.

public long OpenInterest { get; set; }

Property Value

long

PrevDayClosePrice

Gets or sets the last (close) price for the previous day.

public double PrevDayClosePrice { get; set; }

Property Value

double

PrevDayClosePriceType

Gets or sets the price type of the last (close) price for the previous day.

public PriceType PrevDayClosePriceType { get; set; }

Property Value

PriceType

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

int

PrevDayVolume

Gets or sets total volume traded for the previous day.

public double PrevDayVolume { get; set; }

Property Value

double

Methods

ToString()

Returns string representation of this summary event.

public override string ToString()

Returns

string

The string representation.