- Introduced a new module for live trading based on the Multi-Pair Divergence Strategy. - Implemented configuration classes for OKX API and multi-pair settings. - Developed data feed functionality to fetch real-time OHLCV and funding data for multiple assets. - Created a trading bot orchestrator to manage trading cycles, including entry and exit signals based on ML model predictions. - Added comprehensive logging and error handling for robust operation. - Included a README with setup instructions and usage guidelines for the new module.
12 lines
322 B
Python
12 lines
322 B
Python
"""Multi-Pair Divergence Live Trading Module."""
|
|
from .config import MultiPairLiveConfig, get_multi_pair_config
|
|
from .data_feed import MultiPairDataFeed
|
|
from .strategy import LiveMultiPairStrategy
|
|
|
|
__all__ = [
|
|
"MultiPairLiveConfig",
|
|
"get_multi_pair_config",
|
|
"MultiPairDataFeed",
|
|
"LiveMultiPairStrategy",
|
|
]
|