- RotationStrategy: 继承StrategyBase,使用MomentumFactor+TopNSelector - 实现before_entry溢价过滤、dynamic_stoploss动态止损、custom_exit自定义出场 - 策略配置从类属性读取,支持config覆盖
7 lines
123 B
Python
7 lines
123 B
Python
"""
|
|
轮动策略模块入口
|
|
"""
|
|
|
|
from strategies.rotation.strategy import RotationStrategy
|
|
|
|
__all__ = ['RotationStrategy'] |