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>
16 lines
330 B
Markdown
16 lines
330 B
Markdown
# market-data
|
|
|
|
Market data repository for the Foxhunt HFT trading system.
|
|
|
|
## Key Types
|
|
|
|
- `MarketDataRepository` — PostgreSQL-backed market data storage
|
|
- Price, orderbook, indicator, and model data access methods
|
|
|
|
## Usage
|
|
|
|
```rust
|
|
use market_data::MarketDataRepository;
|
|
let repo = MarketDataRepository::new(pool).await?;
|
|
```
|