com.dxfeed.api.event
Class Summary

java.lang.Object
  extended by com.dxfeed.api.event.Event
      extended by com.dxfeed.api.event.Summary

public final class Summary
extends Event

Summary information about the trading session including session highs, lows, etc.

Implementation details

This event is implemented on top of QDS records Fundamental and Fundamental&X for regional exchange trading session summaries.


Constructor Summary
Summary()
           
Summary(java.lang.String eventSymbol)
           
 
Method Summary
 double getDayClosePrice()
           
 double getDayHighPrice()
           
 int getDayId()
           
 double getDayLowPrice()
           
 double getDayOpenPrice()
           
 long getOpenInterest()
           
 double getPrevDayClosePrice()
           
 int getPrevDayId()
           
 void setDayClosePrice(double dayClosePrice)
           
 void setDayHighPrice(double dayHighPrice)
           
 void setDayId(int dayId)
           
 void setDayLowPrice(double dayLowPrice)
           
 void setDayOpenPrice(double dayOpenPrice)
           
 void setOpenInterest(long openInterest)
           
 void setPrevDayClosePrice(double prevDayClosePrice)
           
 void setPrevDayId(int prevDayId)
           
 java.lang.String toString()
           
 
Methods inherited from class com.dxfeed.api.event.Event
getEventSymbol, setEventSymbol
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Summary

public Summary()

Summary

public Summary(java.lang.String eventSymbol)
Method Detail

getDayId

public int getDayId()

setDayId

public void setDayId(int dayId)

getDayOpenPrice

public double getDayOpenPrice()

setDayOpenPrice

public void setDayOpenPrice(double dayOpenPrice)

getDayHighPrice

public double getDayHighPrice()

setDayHighPrice

public void setDayHighPrice(double dayHighPrice)

getDayLowPrice

public double getDayLowPrice()

setDayLowPrice

public void setDayLowPrice(double dayLowPrice)

getDayClosePrice

public double getDayClosePrice()

setDayClosePrice

public void setDayClosePrice(double dayClosePrice)

getPrevDayId

public int getPrevDayId()

setPrevDayId

public void setPrevDayId(int prevDayId)

getPrevDayClosePrice

public double getPrevDayClosePrice()

setPrevDayClosePrice

public void setPrevDayClosePrice(double prevDayClosePrice)

getOpenInterest

public long getOpenInterest()

setOpenInterest

public void setOpenInterest(long openInterest)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object