Three fixes: - Streaming MBP-10 parser (parse_mbp10_streaming): computes OFI inline during decode — eliminates Vec<Mbp10Snapshot> allocation (41.9M clones) - Parallel file processing: rayon par_iter across 9 MBP-10 files (778s sequential → ~90s expected on H100 24-core) - Fix hardcoded state_dim=54 in walk-forward backtest tensor creation that caused panic "range end index 55296 out of range for slice of length 52224" — now uses dynamic state_dim (43 or 51 with OFI) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
data
Market data ingestion, broker integration, and feature extraction.
Providers
- Databento — historical and real-time market data via DBN format
- Benzinga — news and fundamentals feed
Broker Integrations
- IB TWS — Interactive Brokers TWS/Gateway socket connection
- ICMarkets — FIX 4.4 protocol integration
Key Modules
brokers— broker adapters (IB TWS, ICMarkets FIX)providers— data provider clients (Databento, Benzinga)parquet_persistence— Parquet read/write for tick and bar datareplay— market data replay for backtestingtraining_pipeline— data preparation for ML model trainingfeatures— technical indicator and feature computationvalidation— data quality checks and schema validation
Cargo Features
| Feature | Default | Description |
|---|---|---|
databento |
yes | Databento provider support |
benzinga |
yes | Benzinga provider support |
icmarkets |
yes | ICMarkets FIX 4.4 integration |
redis-cache |
no | Redis caching layer |
ib |
no | Interactive Brokers adapter |
mock |
no | Mock providers for testing |