feat: Add Multi-Pair Divergence Live Trading Module
- 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.
This commit is contained in:
11
live_trading/multi_pair/__init__.py
Normal file
11
live_trading/multi_pair/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
"""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",
|
||||
]
|
||||
Reference in New Issue
Block a user