Uses of Class
com.dxfeed.schedule.SessionFilter

Packages that use SessionFilter
com.dxfeed.event.candle Defines Candle event (open, high, low, close prices and other information for a specific period) and provides helper classes. 
com.dxfeed.schedule Provides information about trading days, sessions, and their schedules. 
 

Uses of SessionFilter in com.dxfeed.event.candle
 

Methods in com.dxfeed.event.candle that return SessionFilter
 SessionFilter CandleSession.getSessionFilter()
          Returns session filter that corresponds to this session attribute.
 

Uses of SessionFilter in com.dxfeed.schedule
 

Fields in com.dxfeed.schedule declared as SessionFilter
static SessionFilter SessionFilter.AFTER_MARKET
          Accepts any session with type SessionType.AFTER_MARKET.
static SessionFilter SessionFilter.AFTER_MARKET_TRADING
          Deprecated. use AFTER_MARKET filter instead.
static SessionFilter SessionFilter.ANY
          Accepts any session - useful for pure schedule navigation.
static SessionFilter SessionFilter.NO_TRADING
          Accepts any session with type SessionType.NO_TRADING.
static SessionFilter SessionFilter.NON_TRADING
          Accepts non-trading sessions only - those with (Session.isTrading() == false).
static SessionFilter SessionFilter.PRE_MARKET
          Accepts any session with type SessionType.PRE_MARKET.
static SessionFilter SessionFilter.PRE_MARKET_TRADING
          Deprecated. use PRE_MARKET filter instead.
static SessionFilter SessionFilter.REGULAR
          Accepts any session with type SessionType.REGULAR.
static SessionFilter SessionFilter.REGULAR_TRADING
          Deprecated. use REGULAR filter instead.
static SessionFilter SessionFilter.TRADING
          Accepts trading sessions only - those with (Session.isTrading() == true).
 

Methods in com.dxfeed.schedule with parameters of type SessionFilter
 Session Day.findFirstSession(SessionFilter filter)
          Returns first session belonging to this day accepted by specified filter.
 Session Day.findLastSession(SessionFilter filter)
          Returns last session belonging to this day accepted by specified filter.
 Session Schedule.findNearestSessionByTime(long time, SessionFilter filter)
          Returns session that is nearest to the specified time and that is accepted by specified filter.
 Session Session.findNextSession(SessionFilter filter)
          Returns following session accepted by specified filter.
 Session Session.findPrevSession(SessionFilter filter)
          Returns previous session accepted by specified filter.
 Session Day.getFirstSession(SessionFilter filter)
          Returns first session belonging to this day accepted by specified filter.
 Session Day.getLastSession(SessionFilter filter)
          Returns last session belonging to this day accepted by specified filter.
 Session Schedule.getNearestSessionByTime(long time, SessionFilter filter)
          Returns session that is nearest to the specified time and that is accepted by specified filter.
 Session Session.getNextSession(SessionFilter filter)
          Returns following session accepted by specified filter.
 Session Session.getPrevSession(SessionFilter filter)
          Returns previous session accepted by specified filter.
 



Copyright © 2013 Devexperts. All Rights Reserved.