Enum SessionType
Defines type of a session - what kind of trading activity is allowed (if any), what rules are used, what impact on daily trading statistics it has, etc. The NO_TRADING session type is used for non-trading sessions.
Some exchanges support all session types defined here, others do not. Some sessions may have zero duration - e.g. indices that post value once a day. Such sessions can be of any appropriate type, trading or non-trading.public enum SessionType
Fields
AFTER_MARKET = 3
After-market session type marks extended trading session after regular trading hours.
NO_TRADING = 0
Non-trading session type is used to mark periods of time during which trading is not allowed.
PRE_MARKET = 1
Pre-market session type marks extended trading session before regular trading hours.
REGULAR = 2
Regular session type marks regular trading hours session.