- 删除 simple.py(已被 GlobalRotationStrategy 替代) - 删除 backtest_simple_rotation.py 回测脚本 - 删除 test_simple_rotation.py 测试脚本 - 更新 __init__.py 移除 SimpleRotationStrategy 导出 - 现在只保留 GlobalRotationStrategy 正式版
8 lines
143 B
Python
8 lines
143 B
Python
"""
|
|
轮动策略模块
|
|
"""
|
|
|
|
from framework_v2.strategies.rotation.rotation import GlobalRotationStrategy
|
|
|
|
__all__ = ['GlobalRotationStrategy']
|