replay system

This commit is contained in:
Dobromir Popov
2025-08-04 22:46:11 +03:00
parent db61f3c3bf
commit 1479ac1624
7 changed files with 1587 additions and 8 deletions

8
COBY/replay/__init__.py Normal file
View File

@ -0,0 +1,8 @@
"""
Historical data replay system for the COBY multi-exchange data aggregation system.
Provides configurable playback of historical market data with session management.
"""
from .replay_manager import HistoricalReplayManager
__all__ = ['HistoricalReplayManager']