Skip to content

Open Today

FreeValueStandardPro

Check whether the market is open today.

  • Retrieves current day equity market schedule
  • *On days when the market closes early at 1:00 PM ET; eligible options will trade until 1:15 PM.
  • **Some NYSE exchanges will continue late trading until 5:00 PM ET on early close days.
Client
Auth
Style
from thetadatadx import Client

client = Client.from_env()

rows = client.market_data.calendar_open_today()
for t in rows:
    print(t.date, t.open_time, t.close_time, t.status)

Parameters

NameTypeRequiredDefaultDescription
timeout_msintnoPer-request deadline in milliseconds. 0 means no deadline.

Response

Rows of CalendarDay:

FieldTypeDescription
datei32Calendar date as a YYYYMMDD integer. 0 when the server omits the column (single-day endpoints).
open_timei32Market open time, milliseconds since midnight ET.
close_timei32Market close time, milliseconds since midnight ET.
statusstringVendor day classification: open, early_close, full_close, or weekend.

Released under the Apache-2.0 License.