update __init__

This commit is contained in:
zhiyong 2025-05-21 10:46:24 +08:00
parent 42ba54df92
commit 20628a07e6
2 changed files with 0 additions and 19 deletions

View File

@ -1,10 +0,0 @@
"""
实盘交易模块
此模块提供实盘交易的功能使用xtquant接口连接到实际交易系统
"""
from .xt_trader import XtTrader
from .real_trader_manager import RealTraderManager
__all__ = ['XtTrader', 'RealTraderManager']

View File

@ -1,9 +0,0 @@
"""
模拟交易模块
此模块提供模拟交易的功能用于在不涉及真实资金的情况下测试交易策略
"""
from .simulation_trader import SimulationTrader
__all__ = ['SimulationTrader']