Files
foxhunt/crates/trading-data

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

use trading_data::PostgresOrderRepository;
let repo = PostgresOrderRepository::new(pool).await?;