Trading Schedule (NEW)
Trading Schedule (NEW)
Returns the trading schedule for the 6 total days surrounding the current trading day. Non-Trading days, such as holidays, will not be returned.
GET /contract/trading-schedule
Request Object
Query Params
conid: String. Required
Provide the contract identifier to retrieve the trading schedule for.
exchange: String.
Accepts the exchange to retrieve data from. Primary exchange is assumed by default.
Python
Abap
Response Object
exchange_time_zone: String.
Returns the time zone the exchange trades in.
schedules: Object.
A schedule object containing the trading hours.
{
{date}: Array.
Array of hours objects detailing extended and standard trading.
[
extended_hours: Array.
Reference the total extended trading hours for the session.
{
cancel_daily_orders: Boolean.
Determines if DAY orders are canceled after ‘closing’ time.
closing: Integer.
Epoch timestamp of the exchange’s close.
opening: Integer.
Epoch timestamp of the exchange’s open.
}
liquid_hours: Array.
Reference the available trading hours for the regular session
{
closing: Integer.
Epoch timestamp of the exchange’s close.
opening: Integer.
Epoch timestamp of the exchange’s open.
}]}

