Package | Description |
---|---|
com.dxfeed.event.candle |
Provides Candle event (open, high, low, close prices and other information
for a specific period) and helper classes.
|
com.dxfeed.schedule |
Provides information about trading days, sessions, and their schedules.
|
Modifier and Type | Method and Description |
---|---|
SessionFilter |
CandleSession.getSessionFilter()
Returns session filter that corresponds to this session attribute.
|
Modifier and Type | Field and Description |
---|---|
static SessionFilter |
SessionFilter.AFTER_MARKET
Accepts any session with type
SessionType.AFTER_MARKET . |
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
( . |
static SessionFilter |
SessionFilter.PRE_MARKET
Accepts any session with type
SessionType.PRE_MARKET . |
static SessionFilter |
SessionFilter.REGULAR
Accepts any session with type
SessionType.REGULAR . |
static SessionFilter |
SessionFilter.TRADING
Accepts trading sessions only - those with
( . |
Modifier and Type | Method and Description |
---|---|
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 © 2002–2023 Devexperts LLC. All rights reserved.