The download binary was using the default SType::RawSymbol which returned empty DBN files (95 bytes) for parent symbols like ES.FUT. Adding SType::Parent resolves the symbol mapping. Also adjusted end date to 2026-02-22 (latest available data). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
1005 B
TOML
44 lines
1005 B
TOML
# Futures Baseline Universe
|
|
#
|
|
# 4 CME futures for initial trading with limited capital.
|
|
# Train on full-size contracts, execute on micro versions.
|
|
# Data window: 730 days (March 2024 → February 2026)
|
|
#
|
|
# Schema: OHLCV-1m via Databento (GLBX.MDP3 dataset)
|
|
|
|
[universe]
|
|
name = "futures-baseline"
|
|
description = "CME futures baseline: 4 symbols, 730 days, OHLCV-1m"
|
|
date_range_start = "2024-03-01"
|
|
date_range_end = "2026-02-22"
|
|
bar_size = "1m"
|
|
databento_dataset = "GLBX.MDP3"
|
|
databento_schema = "ohlcv-1m"
|
|
|
|
[[symbols]]
|
|
symbol = "ES.FUT"
|
|
trading_symbol = "MES.FUT"
|
|
exchange = "GLBX.MDP3"
|
|
asset_class = "Future"
|
|
min_daily_volume = 1000000.0
|
|
|
|
[[symbols]]
|
|
symbol = "NQ.FUT"
|
|
trading_symbol = "MNQ.FUT"
|
|
exchange = "GLBX.MDP3"
|
|
asset_class = "Future"
|
|
min_daily_volume = 500000.0
|
|
|
|
[[symbols]]
|
|
symbol = "ZN.FUT"
|
|
exchange = "GLBX.MDP3"
|
|
asset_class = "Future"
|
|
min_daily_volume = 500000.0
|
|
|
|
[[symbols]]
|
|
symbol = "6E.FUT"
|
|
trading_symbol = "M6E.FUT"
|
|
exchange = "GLBX.MDP3"
|
|
asset_class = "Future"
|
|
min_daily_volume = 200000.0
|