34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
"""sanguo_portfolio 策略层。"""
|
|
from .all_weather import AllWeatherConfig, AllWeatherStrategy, BrokerFacade
|
|
from .all_weather_ex import AllWeatherExConfig, AllWeatherExStrategy
|
|
from .channel_test import ChannelTestConfig, ChannelTestStrategy
|
|
from .momentum_timing import MomentumTimingConfig, MomentumTimingStrategy
|
|
from .momentum_timing_ex import MomentumTimingExConfig, MomentumTimingExStrategy
|
|
from .small_cap import SmallCapConfig, SmallCapStrategy
|
|
from .small_cap_ex import SmallCapExConfig, SmallCapExStrategy
|
|
from .value_selection import ValueSelectionConfig, ValueSelectionStrategy
|
|
from .value_selection_ex import ValueSelectionExConfig, ValueSelectionExStrategy
|
|
|
|
__all__ = [
|
|
"AllWeatherStrategy",
|
|
"AllWeatherConfig",
|
|
"BrokerFacade",
|
|
"ChannelTestStrategy",
|
|
"ChannelTestConfig",
|
|
"MomentumTimingStrategy",
|
|
"MomentumTimingConfig",
|
|
"SmallCapStrategy",
|
|
"SmallCapConfig",
|
|
"ValueSelectionStrategy",
|
|
"ValueSelectionConfig",
|
|
# TET Phase 2 验证副本(issue #19,验证后 Phase 3 删)
|
|
"AllWeatherExStrategy",
|
|
"AllWeatherExConfig",
|
|
"MomentumTimingExStrategy",
|
|
"MomentumTimingExConfig",
|
|
"SmallCapExStrategy",
|
|
"SmallCapExConfig",
|
|
"ValueSelectionExStrategy",
|
|
"ValueSelectionExConfig",
|
|
]
|