feat(rotation): 实现轮动策略(使用框架抽象+定制组件)

- RotationStrategy: 继承StrategyBase,使用MomentumFactor+TopNSelector
- 实现before_entry溢价过滤、dynamic_stoploss动态止损、custom_exit自定义出场
- 策略配置从类属性读取,支持config覆盖
This commit is contained in:
2026-05-11 23:09:49 +08:00
parent 69081297c5
commit de31271ab3
3 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"""
strategies模块入口
包含所有策略实现
"""
from strategies.rotation import RotationStrategy
__all__ = ['RotationStrategy']