Finance.Foundation
finance.foundation / Markets / ICE Futures Europe
Market · IFEU · United Kingdom

ICE Futures Europe

Where Brent crude and long gilt futures trade, across divisions that each carry their own segment MIC.

MIC (ISO 10383)
IFEU
Country
United Kingdom
Type
Derivatives exchange
Trading currency
USD
Timezone
Europe/London
Operator
Ice Futures Europe
Operator LEI
549300UF4R84F48NCH34 (GLEIF)

Trading session local time · Europe/London

Session hours and the settlement cycle are compiled by Finance Foundation from the venue’s own published trading calendar. These are exact and change-prone — an extended session or a moved auction dates a figure like this quickly — so each row below carries what two independently maintained open calendars say about the same venue. Verify against the exchange before relying on any of it operationally. Sources.

Neither open calendar we cross-check against covers IFEU, so these hours stand on our reading of the exchange’s own publication alone.

Regular session
01:00–23:00
Lunch break
none
Settlement cycle
T+1

Ownership

Operating entity
ICE FUTURES EUROPE GB
549300UF4R84F48NCH34
Ultimate owner
INTERCONTINENTAL EXCHANGE, INC.
5493000F4ZO33MV32P92 via GLEIF ultimate-parent relationship
Sibling venues
New York Stock Exchange, ICE Futures U.S. — run by the same group
Owner listed
ICE on New York Stock Exchange
Self-listed — its own shares trade on a market it operates.
Who holds it
Dispersed public shareholders with no strategic or controlling holder — the only 5%+ holders are index managers (Vanguard 10.1%, BlackRock 6.9%), and all directors and executive officers together hold under 1%.

Clearing and settlement

InstitutionRoleLEI
ICE Clear EuropeCentral counterparty 5R6J7JCQRIPQR1EEP713

These are separate legal entities from the venue operator above, each with its own LEI — a distinction the ISO 10383 registry itself gets wrong for two venues in this dataset, where it records the depository's or the clearing house's code against the exchange. The full layer.

Segment MICs 5 venues under IFEU

MICSegment / venue
IFLXIce Futures Europe - Agricultural Products Division
IFLLIce Futures Europe - Financial Products Division
IFENIce Futures Europe - Oil And Refined Products Division
IFLOIce Futures Europe - Equity Products Division
IFUTIce Futures Europe - European Utilities Division

Operating MIC vs segment MIC per ISO 10383: the operating code identifies the exchange, segment codes identify its individual order books, growth markets and derivatives venues. Every code was checked line by line against the official ISO 10383 registry file (SWIFT is the registration authority) — codes that were expired or belonged to a separate operating venue were rejected.

Assets tied to this venue

Brent Crude Oil futures listed on · UK 10-Year Gilt futures listed on

Covered assets whose relationship to this venue is recorded in the dataset — an index calculated on it, or a contract listed on it. Companies listed here are in the table above; this is the non-equity side.

Approximate reference values from public sources · seed-0.7 · marketcap-1 · 2026-08-30 · not real-time. See data & methodology.

# this page as data GET https://finance.foundation/api/v1/markets/ice-eu

JSONCSV No key, CORS enabled — paste any of these straight into a notebook.

Code to fetch it
curl
curl -s https://finance.foundation/api/v1/markets/ice-eu
Python
import requests r = requests.get("https://finance.foundation/api/v1/markets/ice-eu", timeout=30) r.raise_for_status() data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/markets/ice-eu"); if (!r.ok) throw new Error(r.status); const data = await r.json();
pandas
import pandas as pd df = pd.read_csv("https://finance.foundation/api/v1/markets/ice-eu.csv")