Files
NewStock/qmt/__init__.py

21 lines
435 B
Python
Raw Normal View History

# coding: utf-8
"""
QMT (Quantitative Trading) Module
提供量化交易相关的功能
- Redis Stream 消息处理
- 交易信号发送
- 回测消息消费
- 细粒度日志记录
"""
from .message_processor import StreamMessageProcessor, send_qmt_signal_to_stream
from .logger import QMTLogger, get_qmt_logger
__all__ = [
"StreamMessageProcessor",
"send_qmt_signal_to_stream",
"QMTLogger",
"get_qmt_logger",
]