System Status
Live market status across all supported exchanges. Updated on page load. All times UTC.
Last checked: —
Exchange Status
Sample Live Receipt
Signed Ed25519 receipt — verify at headlessoracle.com/verify
GET /v5/demo?mic=XNYS
Verify →
Loading...
Upcoming DST Transitions
UK/EU DST — Fall Back
October 25, 2026 · 01:00 UTC
BST → GMT / CEST → CET (UTC+1 → UTC+0 / UTC+2 → UTC+1). Clocks fall back 1 hour. Affects XLON, XPAR, XSWX, XMIL, XHEL, XSTO.
Bots using hardcoded UTC+1 or UTC+2 will compute wrong session times from October 26 onward.
US DST — Fall Back
November 1, 2026 · 02:00 ET
EDT → EST (UTC-4 → UTC-5). Clocks fall back 1 hour. Affects XNYS, XNAS, XCBT, XNYM, XCBO.
Bots with hardcoded UTC-4 will compute wrong session times from November 2 onward.
3-Line Integration
Python · fail-closed by design
receipt = requests.get("https://headlessoracle.com/v5/status?mic=XNYS",
headers={"X-Oracle-Key": key}, timeout=4).json()
if receipt["status"] != "OPEN": defer() # fail-closed
verify_signature(receipt) # Ed25519 check
execute_trade() # only path to execution