ICE
Coming SoonFutures & Derivatives
connectorType: "ice"Intercontinental Exchange — energy, commodities, financials
Connection Architecture
ICE
WebSocket / REST→
Connector
libs/exchange-ice→
Provider
:8081/api→
Detector
Advisor
Studio
The connector feeds exchange data to Provider. Detector receives market data, Studio receives read views, and Advisor sees only signed candidate evidence.
Technologies
Transport
WebSocketREST
Authentication
API Key + SecretData Format
JSONBest for
- Energy traders tracking Brent crude as the global oil benchmark alongside WTI spread analysis.
- Agricultural commodity desks monitoring soft commodities (sugar, coffee, cotton, cocoa) for macro correlations.
- Carbon market participants tracking EU ETS and CCA emissions allowances futures.
Connect via code
1Environment variables (.env)
ICE_API_KEY=your_key_here ICE_API_SECRET=your_secret_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "ice",
"enabled": true,
"key": "${ICE_API_KEY}",
"secret": "${ICE_API_SECRET}",
"markets": [
{ "marketType": "spot", "symbols": [{ "name": "BTCUSDT" }] }
],
"subscriptions": [
{ "type": "PROVIDER_MARKETDATA_CANDLE", "symbols": ["BTCUSDT"], "intervals": ["min1", "h1"], "active": true },
{ "type": "PROVIDER_MARKETDATA_TRADE", "symbols": ["BTCUSDT"], "active": true },
{ "type": "PROVIDER_MARKETDATA_ORDERBOOK", "symbols": ["BTCUSDT"], "active": true }
]
}
]
}
}3Verify and query data
Public verification 1. Configure credentials in the private Provider environment. 2. Verify connector status in the internal Studio/Provider console. 3. Use Barfinex public pages to inspect market data. Operator Provider commands and tokens remain in internal runbooks only.
Available via Barfinex API
/api/candles/ice/...
/api/trades/ice/...
/api/orderbook/ice/...
/api/account/ice/...
/api/symbols/ice/...
/api/assets/ice/...
Studio graphical setup — in development, coming in the next release.
Important
ICE market data access requires an exchange agreement and varies by product (energy vs.
agriculture vs.
financial).
Real-time data is exchange-licensed; delayed snapshots may be available at lower cost.
Supported Markets
Futures
Websitewww.ice.com
Connect in Studio(soon)
Exchange Website