mirror of
https://github.com/xavierchuan/FX-ML-Trading-Engine.git
synced 2026-07-27 18:17:44 +00:00
14 lines
353 B
Python
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",
|
|
] |