real_trader/src/real/__init__.py
2025-05-01 15:19:27 +08:00

10 lines
246 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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