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