propfirmkey commited on
Commit
4a03485
·
verified ·
1 Parent(s): fd38d8b

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - futures
5
+ - risk-management
6
+ - quantitative-finance
7
+ - algorithmic-trading
8
+ - market-data
9
+ - cme-group
10
+ - derivatives
11
+ - financial-engineering
12
+ pretty_name: "CME Group Futures Contract Specifications & Risk Parameters"
13
+ size_categories:
14
+ - n<1K
15
+ task_categories:
16
+ - tabular-regression
17
+ - tabular-classification
18
+ ---
19
+
20
+ # CME Group Futures Contract Specifications & Risk Parameters
21
+
22
+ A comprehensive reference dataset of futures contract specifications and risk parameters covering 55+ contracts across equities, energy, metals, agriculture, currencies, interest rates, livestock, volatility, and cryptocurrency sectors.
23
+
24
+ Designed as structured input for risk models, position sizing algorithms, backtesting engines, and margin optimization systems.
25
+
26
+ ## Description
27
+
28
+ This dataset consolidates publicly available contract specifications and margin requirements for major futures contracts traded on CME Group exchanges (CME, CBOT, NYMEX, COMEX) and select ICE/CFE contracts. Each record contains the mechanical parameters needed to correctly model a futures position: tick size, tick value, contract multiplier, trading hours, settlement method, and representative margin levels.
29
+
30
+ The data is curated for direct consumption by quantitative systems that need to translate signal-level decisions into properly sized, margin-aware positions.
31
+
32
+ ## Data Sources
33
+
34
+ All contract specifications are derived from official exchange documentation:
35
+
36
+ - **CME Group** — Contract specification pages at cmegroup.com for ES, NQ, CL, GC, ZB, 6E, and all other CME/CBOT/NYMEX/COMEX products
37
+ - **ICE Futures** — Contract specs for CT, KC, SB, CC
38
+ - **Cboe Futures Exchange (CFE)** — VX (VIX futures) specifications
39
+
40
+ Margin requirements reflect CME Group performance bond requirements and are representative values. Actual margins are set by clearing firms and may differ.
41
+
42
+ ## Schema
43
+
44
+ ### futures_contracts.csv
45
+
46
+ | Column | Type | Description |
47
+ |--------|------|-------------|
48
+ | `symbol` | string | Standard futures ticker symbol |
49
+ | `name` | string | Full contract name |
50
+ | `exchange` | string | Listing exchange (CME, CBOT, NYMEX, COMEX, ICE, CFE) |
51
+ | `sector` | string | Asset class grouping |
52
+ | `tick_size` | float | Minimum price increment |
53
+ | `tick_value_usd` | float | Dollar value of one tick move |
54
+ | `contract_size` | string | Notional multiplier or deliverable quantity |
55
+ | `trading_hours_ct` | string | Regular trading hours in U.S. Central Time |
56
+ | `last_trading_day` | string | Rule for determining the last trading day |
57
+ | `settlement_type` | string | Cash or Physical delivery |
58
+ | `currency` | string | Contract denomination currency |
59
+ | `typical_daily_range_ticks` | int | Representative daily range in ticks (approximate) |
60
+ | `typical_margin_usd` | int | Representative initial margin in USD |
61
+
62
+ ### margin_requirements.csv
63
+
64
+ | Column | Type | Description |
65
+ |--------|------|-------------|
66
+ | `symbol` | string | Standard futures ticker symbol (joins to futures_contracts) |
67
+ | `name` | string | Full contract name |
68
+ | `initial_margin_usd` | int | Exchange initial (performance bond) margin |
69
+ | `maintenance_margin_usd` | int | Exchange maintenance margin |
70
+ | `day_trade_margin_usd` | int | Reduced intraday margin (broker-dependent) |
71
+ | `exchange` | string | Listing exchange |
72
+ | `last_updated` | date | Date margins were last verified |
73
+ | `notes` | string | Contextual notes on margin behavior |
74
+
75
+ ## Use Cases
76
+
77
+ ### Position Sizing
78
+
79
+ Calculate maximum position size given account equity and risk tolerance:
80
+
81
+ ```
82
+ max_contracts = floor(account_equity * risk_pct / (tick_value * stop_distance_ticks))
83
+ ```
84
+
85
+ ### Risk Calculation
86
+
87
+ Compute dollar risk per contract using tick value and typical daily range:
88
+
89
+ ```
90
+ daily_risk_per_contract = tick_value_usd * typical_daily_range_ticks
91
+ ```
92
+
93
+ ### Backtesting
94
+
95
+ Map raw price changes to PnL using contract-specific tick sizes and multipliers. Handle settlement type differences (cash vs. physical) for roll logic.
96
+
97
+ ### Margin Optimization
98
+
99
+ Model portfolio-level margin requirements. Identify margin-efficient alternatives (e.g., MES vs. ES, MCL vs. CL) and cross-margining opportunities within the same exchange.
100
+
101
+ ### Cross-Asset Volatility Normalization
102
+
103
+ Normalize position sizes across asset classes by converting typical daily ranges to common dollar-risk units, enabling apples-to-apples comparison of signals from different sectors.
104
+
105
+ ## Update Frequency
106
+
107
+ Margin requirements are updated periodically to reflect exchange changes. Contract specifications are stable but should be verified against exchange sources before production use. The `last_updated` field in `margin_requirements.csv` indicates when margins were last reviewed.
108
+
109
+ ## Limitations
110
+
111
+ - **Margin values are representative.** Actual margins are set by individual clearing firms (FCMs) and may be higher than exchange minimums. Day trade margins are particularly variable across brokers.
112
+ - **Typical daily ranges are approximate.** They represent normal market conditions and will be significantly exceeded during high-volatility events (FOMC, NFP, geopolitical shocks).
113
+ - **Trading hours may change.** Exchanges periodically adjust hours for holidays and special events. Always verify against the exchange calendar.
114
+ - **Not all contracts are included.** This dataset covers the most actively traded contracts. Thinly traded or regional contracts are excluded.
115
+ - **No intraday data.** This is a static reference dataset, not a time series. For dynamic margin monitoring, connect to exchange APIs.
116
+ - **ICE and CFE contracts** are included for completeness but represent a small subset of those exchanges' full product offerings.
117
+
118
+ ## Citation
119
+
120
+ If you use this dataset in research or production systems, please cite:
121
+
122
+ ```bibtex
123
+ @dataset{futures_risk_parameters_2026,
124
+ title={CME Group Futures Contract Specifications & Risk Parameters},
125
+ year={2026},
126
+ publisher={Hugging Face},
127
+ url={https://huggingface.co/datasets/futures-risk-parameters}
128
+ }
129
+ ```
130
+
131
+ ## License
132
+
133
+ MIT
134
+
135
+ ---
136
+
137
+ Maintained by [PropFirmKey.com](https://propfirmkey.com)
data/futures_contracts.csv ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ symbol,name,exchange,sector,tick_size,tick_value_usd,contract_size,trading_hours_ct,last_trading_day,settlement_type,currency,typical_daily_range_ticks,typical_margin_usd
2
+ ES,E-mini S&P 500,CME,Equity Index,0.25,12.50,50 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,160,12650
3
+ NQ,E-mini Nasdaq 100,CME,Equity Index,0.25,5.00,20 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,400,18150
4
+ YM,E-mini Dow ($5),CBOT,Equity Index,1.00,5.00,5 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,300,10200
5
+ RTY,E-mini Russell 2000,CME,Equity Index,0.10,5.00,50 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,200,7150
6
+ MES,Micro E-mini S&P 500,CME,Equity Index,0.25,1.25,5 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,160,1265
7
+ MNQ,Micro E-mini Nasdaq 100,CME,Equity Index,0.25,0.50,2 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,400,1815
8
+ MYM,Micro E-mini Dow,CBOT,Equity Index,1.00,0.50,0.5 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,300,1020
9
+ M2K,Micro E-mini Russell 2000,CME,Equity Index,0.10,0.50,5 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,200,715
10
+ NKD,Nikkei 225 (Dollar),CME,Equity Index,5.00,25.00,5 x Index,Sun-Fri 17:00-16:00,2nd Friday of contract month,Cash,USD,120,9625
11
+ EMD,E-mini S&P MidCap 400,CME,Equity Index,0.10,10.00,100 x Index,Sun-Fri 17:00-16:00,3rd Friday of contract month,Cash,USD,80,12100
12
+ CL,Crude Oil WTI,NYMEX,Energy,0.01,10.00,1000 barrels,Sun-Fri 17:00-16:00,3rd business day prior to 25th of month before delivery,Physical,USD,200,7200
13
+ NG,Natural Gas,NYMEX,Energy,0.001,10.00,10000 mmBtu,Sun-Fri 17:00-16:00,3rd last business day of month before delivery,Physical,USD,60,3800
14
+ MCL,Micro WTI Crude Oil,NYMEX,Energy,0.01,1.00,100 barrels,Sun-Fri 17:00-16:00,3rd business day prior to 25th of month before delivery,Physical,USD,200,720
15
+ RB,RBOB Gasoline,NYMEX,Energy,0.0001,4.20,42000 gallons,Sun-Fri 17:00-16:00,Last business day of month before delivery,Physical,USD,300,7500
16
+ HO,Heating Oil,NYMEX,Energy,0.0001,4.20,42000 gallons,Sun-Fri 17:00-16:00,Last business day of month before delivery,Physical,USD,250,7200
17
+ QM,E-mini Crude Oil,NYMEX,Energy,0.025,12.50,500 barrels,Sun-Fri 17:00-16:00,3rd business day prior to 25th of month before delivery,Cash,USD,80,3600
18
+ BZ,Brent Crude Oil,NYMEX,Energy,0.01,10.00,1000 barrels,Sun-Fri 17:00-16:00,Last business day 2 months before delivery,Cash,USD,180,7000
19
+ GC,Gold,COMEX,Metals,0.10,10.00,100 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,200,11550
20
+ SI,Silver,COMEX,Metals,0.005,25.00,5000 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,60,10200
21
+ HG,Copper,COMEX,Metals,0.0005,12.50,25000 lbs,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,80,5500
22
+ PL,Platinum,NYMEX,Metals,0.10,5.00,50 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,150,3200
23
+ PA,Palladium,NYMEX,Metals,0.10,10.00,100 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,100,20000
24
+ MGC,Micro Gold,COMEX,Metals,0.10,1.00,10 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,200,1155
25
+ SIL,Micro Silver,COMEX,Metals,0.005,5.00,1000 troy oz,Sun-Fri 17:00-16:00,3rd last business day of delivery month,Physical,USD,60,2040
26
+ ZC,Corn,CBOT,Agriculture,0.25,12.50,5000 bushels,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,40,1650
27
+ ZS,Soybeans,CBOT,Agriculture,0.25,12.50,5000 bushels,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,60,2750
28
+ ZW,Chicago SRW Wheat,CBOT,Agriculture,0.25,12.50,5000 bushels,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,50,1925
29
+ ZM,Soybean Meal,CBOT,Agriculture,0.10,10.00,100 short tons,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,60,2200
30
+ ZL,Soybean Oil,CBOT,Agriculture,0.01,6.00,60000 lbs,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,80,1800
31
+ ZO,Oats,CBOT,Agriculture,0.25,12.50,5000 bushels,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,30,1100
32
+ ZR,Rough Rice,CBOT,Agriculture,0.005,10.00,2000 cwt,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,25,1200
33
+ KE,KC Hard Red Winter Wheat,CBOT,Agriculture,0.25,12.50,5000 bushels,Sun-Fri 19:00-07:45 and Mon-Fri 08:30-13:20,Business day prior to 15th of contract month,Physical,USD,50,2000
34
+ CT,Cotton No. 2,ICE,Agriculture,0.01,5.00,50000 lbs,Mon-Fri 20:00-13:20,17th business day from end of spot month,Physical,USD,100,3100
35
+ KC,Coffee C,ICE,Agriculture,0.05,18.75,37500 lbs,Mon-Fri 03:15-12:30,1 business day before last notice day,Physical,USD,80,5500
36
+ SB,Sugar No. 11,ICE,Agriculture,0.01,11.20,112000 lbs,Mon-Fri 02:30-13:00,Last business day of month before delivery,Physical,USD,40,1300
37
+ CC,Cocoa,ICE,Agriculture,1.00,10.00,10 metric tons,Mon-Fri 03:45-12:30,10 business days before last business day of delivery month,Physical,USD,100,8500
38
+ 6E,Euro FX,CME,Currencies,0.00005,6.25,125000 EUR,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,120,2600
39
+ 6B,British Pound,CME,Currencies,0.0001,6.25,62500 GBP,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,100,2750
40
+ 6J,Japanese Yen,CME,Currencies,0.0000005,6.25,12500000 JPY,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,80,3100
41
+ 6A,Australian Dollar,CME,Currencies,0.0001,10.00,100000 AUD,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,60,1800
42
+ 6C,Canadian Dollar,CME,Currencies,0.00005,5.00,100000 CAD,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,80,1400
43
+ 6S,Swiss Franc,CME,Currencies,0.0001,12.50,125000 CHF,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,60,3200
44
+ 6N,New Zealand Dollar,CME,Currencies,0.0001,10.00,100000 NZD,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,50,1500
45
+ 6M,Mexican Peso,CME,Currencies,0.000010,5.00,500000 MXN,Sun-Fri 17:00-16:00,2nd business day before 3rd Wednesday of contract month,Cash,USD,60,2200
46
+ ZB,30-Year U.S. Treasury Bond,CBOT,Interest Rates,0.03125,31.25,100000 face value,Sun-Fri 17:00-16:00,7th business day before last business day of delivery month,Physical,USD,60,5500
47
+ ZN,10-Year U.S. Treasury Note,CBOT,Interest Rates,0.015625,15.625,100000 face value,Sun-Fri 17:00-16:00,7th business day before last business day of delivery month,Physical,USD,80,2750
48
+ ZF,5-Year U.S. Treasury Note,CBOT,Interest Rates,0.0078125,7.8125,100000 face value,Sun-Fri 17:00-16:00,Last business day of delivery month,Physical,USD,80,1600
49
+ ZT,2-Year U.S. Treasury Note,CBOT,Interest Rates,0.0078125,15.625,200000 face value,Sun-Fri 17:00-16:00,Last business day of delivery month,Physical,USD,40,1200
50
+ SR3,3-Month SOFR,CME,Interest Rates,0.0025,6.25,2500 x Rate,Sun-Fri 17:00-16:00,3rd Wednesday of contract month,Cash,USD,20,825
51
+ UB,Ultra U.S. Treasury Bond,CBOT,Interest Rates,0.03125,31.25,100000 face value,Sun-Fri 17:00-16:00,7th business day before last business day of delivery month,Physical,USD,80,7500
52
+ TN,Ultra 10-Year U.S. Treasury Note,CBOT,Interest Rates,0.015625,15.625,100000 face value,Sun-Fri 17:00-16:00,7th business day before last business day of delivery month,Physical,USD,70,3400
53
+ LE,Live Cattle,CME,Livestock,0.025,10.00,40000 lbs,Mon-Fri 08:30-13:05,Last business day of contract month,Cash,USD,60,2200
54
+ HE,Lean Hogs,CME,Livestock,0.025,10.00,40000 lbs,Mon-Fri 08:30-13:05,10th business day of contract month,Cash,USD,80,1800
55
+ GF,Feeder Cattle,CME,Livestock,0.025,12.50,50000 lbs,Mon-Fri 08:30-13:05,Last Thursday of contract month,Cash,USD,50,3200
56
+ VX,CBOE Volatility Index (VIX),CFE,Volatility,0.05,50.00,1000 x Index,Sun-Fri 17:00-16:00,Wednesday 30 days before 3rd Friday of following month,Cash,USD,40,8800
57
+ BTC,Bitcoin (CME),CME,Cryptocurrency,5.00,25.00,5 BTC,Sun-Fri 17:00-16:00,Last Friday of contract month,Cash,USD,200,55000
58
+ MBT,Micro Bitcoin (CME),CME,Cryptocurrency,5.00,0.50,0.1 BTC,Sun-Fri 17:00-16:00,Last Friday of contract month,Cash,USD,200,1100
59
+ ETH,Ether (CME),CME,Cryptocurrency,0.25,12.50,50 ETH,Sun-Fri 17:00-16:00,Last Friday of contract month,Cash,USD,160,9000
60
+ MET,Micro Ether (CME),CME,Cryptocurrency,0.05,0.50,0.1 ETH,Sun-Fri 17:00-16:00,Last Friday of contract month,Cash,USD,160,180
data/margin_requirements.csv ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ symbol,name,initial_margin_usd,maintenance_margin_usd,day_trade_margin_usd,exchange,last_updated,notes
2
+ ES,E-mini S&P 500,12650,11500,500,CME,2026-03-15,CME performance bond; day trade margin varies by broker
3
+ NQ,E-mini Nasdaq 100,18150,16500,1000,CME,2026-03-15,Higher margin reflects greater index volatility
4
+ YM,E-mini Dow ($5),10200,9300,500,CBOT,2026-03-15,CBOT performance bond
5
+ RTY,E-mini Russell 2000,7150,6500,500,CME,2026-03-15,Small-cap index; relatively higher vol-adjusted margin
6
+ MES,Micro E-mini S&P 500,1265,1150,50,CME,2026-03-15,1/10th of ES margin
7
+ MNQ,Micro E-mini Nasdaq 100,1815,1650,100,CME,2026-03-15,1/10th of NQ margin
8
+ MYM,Micro E-mini Dow,1020,930,50,CBOT,2026-03-15,1/10th of YM margin
9
+ M2K,Micro E-mini Russell 2000,715,650,50,CME,2026-03-15,1/10th of RTY margin
10
+ NKD,Nikkei 225 (Dollar),9625,8750,4800,CME,2026-03-15,Dollar-denominated Nikkei futures
11
+ EMD,E-mini S&P MidCap 400,12100,11000,6050,CME,2026-03-15,Lower liquidity than ES; wider spreads
12
+ CL,Crude Oil WTI,7200,6500,1000,NYMEX,2026-03-15,Margin increases during high-vol periods
13
+ NG,Natural Gas,3800,3450,1000,NYMEX,2026-03-15,Historically volatile; margin frequently adjusted
14
+ MCL,Micro WTI Crude Oil,720,650,100,NYMEX,2026-03-15,1/10th of CL margin
15
+ RB,RBOB Gasoline,7500,6800,3750,NYMEX,2026-03-15,Crack spread component; physical delivery
16
+ HO,Heating Oil,7200,6550,3600,NYMEX,2026-03-15,Crack spread component; physical delivery
17
+ QM,E-mini Crude Oil,3600,3250,500,NYMEX,2026-03-15,Half-size crude oil contract; cash settled
18
+ BZ,Brent Crude Oil,7000,6350,3500,NYMEX,2026-03-15,ICE Brent benchmark; cash settled at CME
19
+ GC,Gold,11550,10500,1000,COMEX,2026-03-15,Safe haven; margin stable relative to notional
20
+ SI,Silver,10200,9250,2000,COMEX,2026-03-15,High volatility metal; large tick value
21
+ HG,Copper,5500,5000,2750,COMEX,2026-03-15,Industrial metal; sensitive to macro data
22
+ PL,Platinum,3200,2900,1600,NYMEX,2026-03-15,Lower liquidity than gold/silver
23
+ PA,Palladium,20000,18200,10000,NYMEX,2026-03-15,Thin liquidity; extreme margin requirements
24
+ MGC,Micro Gold,1155,1050,100,COMEX,2026-03-15,1/10th of GC margin
25
+ SIL,Micro Silver,2040,1850,400,COMEX,2026-03-15,1/5th of SI margin (1000 oz vs 5000 oz)
26
+ ZC,Corn,1650,1500,500,CBOT,2026-03-15,Seasonal margin adjustments around USDA reports
27
+ ZS,Soybeans,2750,2500,750,CBOT,2026-03-15,Higher margin during crop uncertainty
28
+ ZW,Chicago SRW Wheat,1925,1750,500,CBOT,2026-03-15,Soft red winter wheat benchmark
29
+ ZM,Soybean Meal,2200,2000,750,CBOT,2026-03-15,Crush spread component
30
+ ZL,Soybean Oil,1800,1650,500,CBOT,2026-03-15,Crush spread component
31
+ ZO,Oats,1100,1000,550,CBOT,2026-03-15,Low liquidity; wide bid-ask spreads
32
+ ZR,Rough Rice,1200,1100,600,CBOT,2026-03-15,Thin volume; physical delivery
33
+ KE,KC Hard Red Winter Wheat,2000,1825,500,CBOT,2026-03-15,Hard red winter wheat; KC vs Chicago spread
34
+ CT,Cotton No. 2,3100,2800,1550,ICE,2026-03-15,ICE contract; subject to limit moves
35
+ KC,Coffee C,5500,5000,2750,ICE,2026-03-15,High volatility soft commodity
36
+ SB,Sugar No. 11,1300,1175,650,ICE,2026-03-15,World sugar benchmark
37
+ CC,Cocoa,8500,7725,4250,ICE,2026-03-15,Extreme volatility since 2024 supply crisis
38
+ 6E,Euro FX,2600,2350,500,CME,2026-03-15,Most liquid FX future
39
+ 6B,British Pound,2750,2500,500,CME,2026-03-15,Cable futures
40
+ 6J,Japanese Yen,3100,2800,500,CME,2026-03-15,Large notional value in JPY
41
+ 6A,Australian Dollar,1800,1650,500,CME,2026-03-15,Commodity-linked currency
42
+ 6C,Canadian Dollar,1400,1275,500,CME,2026-03-15,Oil-correlated currency
43
+ 6S,Swiss Franc,3200,2900,500,CME,2026-03-15,Safe haven currency; low vol but high notional
44
+ 6N,New Zealand Dollar,1500,1375,500,CME,2026-03-15,Lower liquidity than majors
45
+ 6M,Mexican Peso,2200,2000,500,CME,2026-03-15,EM currency; higher overnight risk
46
+ ZB,30-Year U.S. Treasury Bond,5500,5000,1500,CBOT,2026-03-15,Long duration; high sensitivity to rate changes
47
+ ZN,10-Year U.S. Treasury Note,2750,2500,500,CBOT,2026-03-15,Most liquid treasury future
48
+ ZF,5-Year U.S. Treasury Note,1600,1450,500,CBOT,2026-03-15,Intermediate duration benchmark
49
+ ZT,2-Year U.S. Treasury Note,1200,1100,500,CBOT,2026-03-15,Short duration; lower vol per contract
50
+ SR3,3-Month SOFR,825,750,500,CME,2026-03-15,Replaced Eurodollar; rate expectations
51
+ UB,Ultra U.S. Treasury Bond,7500,6800,3750,CBOT,2026-03-15,Longest duration Treasury future; highest vol
52
+ TN,Ultra 10-Year U.S. Treasury Note,3400,3100,1700,CBOT,2026-03-15,Between ZN and ZB in duration exposure
53
+ LE,Live Cattle,2200,2000,1100,CME,2026-03-15,Cash settled; USDA report sensitivity
54
+ HE,Lean Hogs,1800,1650,900,CME,2026-03-15,Cash settled; seasonal patterns
55
+ GF,Feeder Cattle,3200,2900,1600,CME,2026-03-15,Cash settled; corn price correlation
56
+ VX,CBOE Volatility Index (VIX),8800,8000,4400,CFE,2026-03-15,Contango/backwardation dynamics; no equity offset
57
+ BTC,Bitcoin (CME),55000,50000,27500,CME,2026-03-15,5 BTC notional; extreme margin requirements
58
+ MBT,Micro Bitcoin (CME),1100,1000,550,CME,2026-03-15,1/50th of BTC contract
59
+ ETH,Ether (CME),9000,8200,4500,CME,2026-03-15,50 ETH notional; high crypto volatility
60
+ MET,Micro Ether (CME),180,165,90,CME,2026-03-15,0.1 ETH notional; accessible crypto exposure