summaryrefslogtreecommitdiff
path: root/services/strategy-engine/src/strategy_engine/config.py
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 14:15:30 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 14:15:30 +0900
commitaf8a9c0af9bdcbd2dc3f03c02fd1174ad0d28404 (patch)
tree2feadcb49441671025bd815c1429e76f54a3d1da /services/strategy-engine/src/strategy_engine/config.py
parent6909bc142912177d76b295c5d21507229ed6e2c0 (diff)
feat: integrate stock selector into strategy engine scheduler
Diffstat (limited to 'services/strategy-engine/src/strategy_engine/config.py')
-rw-r--r--services/strategy-engine/src/strategy_engine/config.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/services/strategy-engine/src/strategy_engine/config.py b/services/strategy-engine/src/strategy_engine/config.py
index 9fd9c49..2a9cb43 100644
--- a/services/strategy-engine/src/strategy_engine/config.py
+++ b/services/strategy-engine/src/strategy_engine/config.py
@@ -7,3 +7,9 @@ class StrategyConfig(Settings):
symbols: list[str] = ["AAPL", "MSFT", "GOOGL", "AMZN", "TSLA"]
timeframes: list[str] = ["1m"]
strategy_params: dict = {}
+ selector_candidates_time: str = "15:00"
+ selector_filter_time: str = "15:15"
+ selector_final_time: str = "15:30"
+ selector_max_picks: int = 3
+ anthropic_api_key: str = ""
+ anthropic_model: str = "claude-sonnet-4-20250514"