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>
17 lines
370 B
Markdown
17 lines
370 B
Markdown
# trading-data
|
|
|
|
Trading data repository layer for the high-frequency trading system.
|
|
|
|
## Key Types
|
|
|
|
- `PostgresOrderRepository` — PostgreSQL-backed order storage
|
|
- `OrderRepository` trait — order CRUD operations
|
|
- Position and execution tracking
|
|
|
|
## Usage
|
|
|
|
```rust
|
|
use trading_data::PostgresOrderRepository;
|
|
let repo = PostgresOrderRepository::new(pool).await?;
|
|
```
|