Files
etf/strategies/__init__.py
aszerW de31271ab3 feat(rotation): 实现轮动策略(使用框架抽象+定制组件)
- RotationStrategy: 继承StrategyBase,使用MomentumFactor+TopNSelector
- 实现before_entry溢价过滤、dynamic_stoploss动态止损、custom_exit自定义出场
- 策略配置从类属性读取,支持config覆盖
2026-05-11 23:09:49 +08:00

9 lines
138 B
Python

"""
strategies模块入口
包含所有策略实现
"""
from strategies.rotation import RotationStrategy
__all__ = ['RotationStrategy']