Files
FX-ML-Trading-Engine/QuantTrader/core/execution/__init__.py
T
2025-11-14 22:56:44 +00:00

14 lines
353 B
Python

# 执行层包初始化文件
from .base import ExecutionHandler, OrderEvent, FillEvent
try:
from .oanda_handler import OANDAExecutionHandler
except Exception:
# optional: OANDA handler may not be available if dependencies missing
OANDAExecutionHandler = None
__all__ = [
"ExecutionHandler",
"OrderEvent",
"FillEvent",
"OANDAExecutionHandler",
]