8 lines
264 B
Python
8 lines
264 B
Python
"""
|
|
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'] |