# 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?; ```