- Added `StrategyRun` and `StrategySignal` models to track strategy execution sessions and generated signals, respectively, ensuring a clear separation from live trading data. - Introduced `StrategyRepository` for managing database operations related to strategy runs and signals, including methods for creating, updating, and retrieving strategy data. - Updated `DatabaseOperations` to integrate the new repository, enhancing the overall architecture and maintaining consistency with existing database access patterns. - Enhanced documentation to reflect the new database schema and repository functionalities, ensuring clarity for future development and usage. These changes establish a robust foundation for strategy analysis and backtesting, aligning with project goals for modularity, performance, and maintainability.
17 lines
522 B
Python
17 lines
522 B
Python
"""
|
|
This package contains all the repository classes for database operations.
|
|
"""
|
|
from .base_repository import BaseRepository, DatabaseOperationError
|
|
from .bot_repository import BotRepository
|
|
from .market_data_repository import MarketDataRepository
|
|
from .raw_trade_repository import RawTradeRepository
|
|
from .strategy_repository import StrategyRepository
|
|
|
|
__all__ = [
|
|
"BaseRepository",
|
|
"DatabaseOperationError",
|
|
"BotRepository",
|
|
"MarketDataRepository",
|
|
"RawTradeRepository",
|
|
"StrategyRepository",
|
|
] |