Phase 1: - Real-time signal alerts (Discord/Telegram webhook) - Trading journal with entry/exit tracking - Position sizing calculator (Fixed/Kelly/ATR) Phase 2: - Pension asset allocation (DC/IRP 70% risk limit) - Drawdown monitoring with SVG gauge - Benchmark dashboard (portfolio vs KOSPI vs deposit) Phase 3: - Tax benefit simulation (Korean pension tax rules) - Correlation matrix heatmap - Parameter optimizer with grid search + overfit detection
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
from app.api.auth import router as auth_router
|
|
from app.api.admin import router as admin_router
|
|
from app.api.portfolio import router as portfolio_router
|
|
from app.api.strategy import router as strategy_router
|
|
from app.api.market import router as market_router
|
|
from app.api.backtest import router as backtest_router
|
|
from app.api.snapshot import router as snapshot_router
|
|
from app.api.data_explorer import router as data_explorer_router
|
|
from app.api.signal import router as signal_router
|
|
from app.api.notification import router as notification_router
|
|
from app.api.journal import router as journal_router
|
|
from app.api.position_sizing import router as position_sizing_router
|
|
from app.api.pension import router as pension_router
|
|
from app.api.drawdown import router as drawdown_router
|
|
from app.api.benchmark import router as benchmark_router
|
|
from app.api.tax_simulation import router as tax_simulation_router
|
|
from app.api.correlation import router as correlation_router
|
|
from app.api.optimizer import router as optimizer_router
|
|
|
|
__all__ = [
|
|
"auth_router",
|
|
"admin_router",
|
|
"portfolio_router",
|
|
"strategy_router",
|
|
"market_router",
|
|
"backtest_router",
|
|
"snapshot_router",
|
|
"data_explorer_router",
|
|
"signal_router",
|
|
"notification_router",
|
|
"journal_router",
|
|
"position_sizing_router",
|
|
"pension_router",
|
|
"drawdown_router",
|
|
"benchmark_router",
|
|
"tax_simulation_router",
|
|
"correlation_router",
|
|
"optimizer_router",
|
|
]
|