feat: 프로젝트 기본 구조 구축
This commit is contained in:
18
strategies/impls/__init__.py
Normal file
18
strategies/impls/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
전략 구현체 패키지
|
||||
|
||||
각 전략 유형별로 모듈을 분리하여 관리합니다.
|
||||
"""
|
||||
|
||||
# 각 모듈에서 전략을 import
|
||||
from .trend_following import MovingAverageCrossover
|
||||
from .mean_reversion import RSIMeanReversion
|
||||
from .volatility_breakout import BollingerBandBreakout
|
||||
from .asset_allocation import BoldAssetAllocation
|
||||
|
||||
__all__ = [
|
||||
'MovingAverageCrossover',
|
||||
'RSIMeanReversion',
|
||||
'BollingerBandBreakout',
|
||||
'BoldAssetAllocation',
|
||||
]
|
||||
Reference in New Issue
Block a user