Create 8 missing READMEs (config, ctrader-openapi, market-data, ml-data, model_loader, risk-data, trading-data, training_uploader). Update 9 existing READMEs to standard template format. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
450 B
Markdown
19 lines
450 B
Markdown
# config
|
|
|
|
Configuration management for Foxhunt HFT trading system.
|
|
|
|
## Key Types
|
|
|
|
- `FoxhuntConfig` — top-level configuration struct
|
|
- `MlConfig` — ML model and training configuration
|
|
- `RiskConfig` — risk management parameters
|
|
- `DatabaseConfig` — PostgreSQL connection settings
|
|
- `StorageConfig` — S3/object storage configuration
|
|
|
|
## Usage
|
|
|
|
```rust
|
|
use config::FoxhuntConfig;
|
|
let config = FoxhuntConfig::load("config/foxhunt.toml")?;
|
|
```
|