2025-05-30 20:33:56 +08:00
|
|
|
"""
|
|
|
|
|
Data collection and processing package for the Crypto Trading Bot Platform.
|
|
|
|
|
|
|
|
|
|
This package contains modules for collecting market data from various exchanges,
|
|
|
|
|
processing and validating the data, and storing it in the database.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .base_collector import (
|
|
|
|
|
BaseDataCollector, DataCollectorError, DataValidationError,
|
2025-06-09 17:42:06 +08:00
|
|
|
CollectorStatus, OHLCVData
|
2025-05-30 20:33:56 +08:00
|
|
|
)
|
2025-06-09 17:42:06 +08:00
|
|
|
from .common.data_types import DataType, MarketDataPoint
|
2025-05-30 20:33:56 +08:00
|
|
|
from .collector_manager import CollectorManager, ManagerStatus, CollectorConfig
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
'BaseDataCollector',
|
|
|
|
|
'DataCollectorError',
|
|
|
|
|
'DataValidationError',
|
|
|
|
|
'DataType',
|
|
|
|
|
'CollectorStatus',
|
|
|
|
|
'MarketDataPoint',
|
|
|
|
|
'OHLCVData',
|
|
|
|
|
'CollectorManager',
|
|
|
|
|
'ManagerStatus',
|
|
|
|
|
'CollectorConfig'
|
|
|
|
|
]
|