Futures Market Hours and the Trading Session
CME Globex futures trade from Sunday 6:00 PM ET to Friday 5:00 PM ET, with a 60-minute maintenance break each day from 5:00 to 6:00 PM ET, Monday through Thursday. That is roughly 23 hours a day, five days a week. The detail that catches automated systems is that the trading day rolls at the break rather than at midnight, so a Sunday evening trade belongs to Monday's session — and any daily counter using the calendar date will reset at the wrong moment.
Nearly-continuous access sounds like an unambiguous advantage. It is more accurately a different shape of market, with hours that behave nothing alike.
The schedule
The week opens Sunday evening and runs continuously to Friday afternoon, pausing once each weekday for maintenance. Trading resumes an hour later and continues overnight.
Grain and some agricultural products are the notable exception, running split sessions rather than the near-continuous schedule. Anything outside equity index, energy, metals, and rates is worth checking individually rather than assuming.
Micro contracts trade the same hours as their standard counterparts. Smaller size does not mean a shorter session.
The trading day is not the calendar day
The most consequential detail for automation, and the one most likely to produce a confusing bug.
The futures day runs from the evening reopen to the following afternoon's break. A trade placed Sunday evening belongs to Monday's trading day, not Sunday's.
Anything in your software that counts per day has to use the exchange definition: daily loss limits, trade counts, profit targets, reset boundaries, and reporting periods. A counter keyed to the calendar date resets in the middle of a session and rolls over at a moment that means nothing to the market.
The symptom when this is wrong is subtle. A daily loss limit that resets at midnight gives a system a fresh allowance halfway through the overnight session, which is precisely when you least want a fresh allowance.
The maintenance break is a real event
No trading occurs during it. Orders cannot execute, and working day orders expire with the session rather than carrying across.
Three consequences for anything running unattended. Orders submitted into the window do nothing. Exits that would have triggered during it do not. And a position held across the break is unprotected for that hour regardless of what stops are configured, because there is no market to execute against.
Daily settlement also occurs around this boundary, which is when margin balances update. A position that looked adequately margined during the session can look different afterward.
Not all hours are the same market
This is the part that near-24-hour marketing obscures.
Volume in equity index futures concentrates during the US cash equity session, with another burst around the morning economic data releases. Outside that window — the overnight leg covering Asian and European hours — participation is far thinner.
Thin participation means wider spreads and worse fills. The same order that costs you a tick at ten in the morning can cost several at three. A strategy backtested on regular-hours data and then run continuously will underperform its backtest for reasons that have nothing to do with the signals.
There is also gap risk at the daily reopen. The market resumes an hour after it paused and can resume away from where it stopped. A position held across that boundary carries exposure no stop can protect against, because stops require a market.
What to configure
Four settings that follow directly from the above.
Session filters. Decide which hours you actually want to trade and enforce it. Continuous access is not an instruction to trade continuously, and most retail strategies validated on regular-hours data should be restricted to regular hours.
Exchange-day counters. Every daily limit keyed to the exchange trading day rather than the calendar date.
Break handling. Software should know the maintenance window and not attempt to submit into it, and should expect working day orders to be gone afterward.
Holiday calendars. Exchange holidays and early closes are their own schedule and do not match equity market holidays exactly. A system that does not know the calendar will attempt to trade a market that is closed.
The unattended-hours problem
An options bot that dies overnight missed nothing, because the market was closed. A futures bot that dies at two in the morning missed a night of trading, may be holding a position it is no longer managing, and nobody was awake to notice.
That changes two requirements from good practice to necessity. The software has to run somewhere that stays up rather than on a machine that sleeps — on a self-hosted deployment, an always-on environment you control. And exits that must happen should rest at the broker, because a resting order survives the process dying and a software-managed stop does not.
Alerting that actually reaches you is part of the same requirement. Maintaining a connection and processing data across a 23-hour session is a sustained high-concurrency I/O workload rather than a six-hour one, and failures accumulate where nobody is watching.
The honest limits
Near-continuous access means more hours in which something can go wrong unattended, not more opportunity in any simple sense.
Overnight liquidity is genuinely thinner, and a strategy that works in regular hours may not survive contact with a three-in-the-morning book.
The ability to react to overnight news is real and cuts both ways — you can also be positioned into news you did not anticipate while asleep.
Position sizing remains the control that bounds what an unattended hour costs: capital divided by twenty as the ceiling on any single position, under the divide-by-20 rule, with the divisor raised if you hold more concurrent exposure than that.
Frequently asked questions
What hours do futures trade? CME Globex runs Sunday 6:00 PM ET to Friday 5:00 PM ET with a daily 60-minute maintenance break from 5:00 to 6:00 PM ET, roughly 23 hours a day.
When does the futures trading day start? At the evening reopen, not midnight. A Sunday evening trade belongs to Monday's trading day.
What happens during the maintenance break? No trading occurs, orders cannot execute, and working day orders expire with the session.
Is overnight liquidity the same as during the day? No. Volume concentrates in the US cash session; overnight participation is thinner with wider spreads and worse fills.
Should my strategy trade all session? Only if it was validated in those conditions. Continuous access is not an instruction to trade continuously.
Disclaimer: This article is educational content about trading mechanics and software. It is not investment advice, financial advice, tax advice, legal advice, or a recommendation to buy or sell any security or futures contract, nor a recommendation of any strategy, platform, or broker. Any contracts, specifications, margin figures, or regulatory provisions named are described for illustration and are subject to change without notice. Futures and options trading involve substantial risk of loss and are not suitable for all investors; futures are leveraged and losses can exceed the amount deposited. Please read Characteristics and Risks of Standardized Options before trading options. Automated trading carries additional risks including software defects, connectivity failures, broker API changes, and outages that may prevent orders from being placed, modified, or cancelled. Past performance does not indicate future results, and no configuration, position-sizing rule, or risk setting can guarantee a profit or prevent a loss.
StaxInvesting LLC sells self-hosted trading software. It is not a broker-dealer, futures commission merchant, investment adviser, or financial institution, and it does not manage accounts, hold member funds, place trades on behalf of members, or access member brokerage accounts. Members run the software in their own cloud environment, connect their own brokerage accounts under their own credentials, and are solely responsible for their configuration, their credential security, and every trade executed in their account. Exchange specifications, margin requirements, regulations, and broker terms described here reflect publicly available information as of publication and change frequently; always verify against current official sources. Consult a qualified financial adviser, tax professional, and attorney regarding your individual circumstances.