Refactor: restructure market module with services, stores, and utils
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
存储模块
|
||||
"""
|
||||
|
||||
from .kline_store import KlineStore
|
||||
from .pivot_store import PivotStore
|
||||
from .llm_store import LLMStore
|
||||
from .tech_store import TechStore
|
||||
from .calendar_store import CalendarStore
|
||||
from .flash_news_store import FlashNewsStore
|
||||
from .pending_order_store import PendingOrderStore
|
||||
from .trading_instruction_store import TradingInstructionStore
|
||||
from .signal_store import SignalStore
|
||||
from .strategy_store import StrategyStore
|
||||
from .statistics_store import StatisticsStore
|
||||
from .position_store import PositionStore
|
||||
from .trade_history_store import TradeHistoryStore
|
||||
|
||||
__all__ = [
|
||||
'KlineStore', 'PivotStore', 'LLMStore', 'TechStore',
|
||||
'CalendarStore', 'FlashNewsStore',
|
||||
'PendingOrderStore', 'TradingInstructionStore',
|
||||
'SignalStore', 'StrategyStore',
|
||||
'StatisticsStore', 'PositionStore', 'TradeHistoryStore'
|
||||
]
|
||||
Reference in New Issue
Block a user