feat: signal generator — weighted ensemble with market data

This commit is contained in:
Viktor Barzin 2026-02-22 15:36:04 +00:00
parent e483e9987f
commit f3e5fc944d
No known key found for this signature in database
GPG key ID: 0EB088298288D958
11 changed files with 1013 additions and 0 deletions

View file

@ -0,0 +1,14 @@
"""Configuration for the signal generator service."""
from shared.config import BaseConfig
class SignalGeneratorConfig(BaseConfig):
"""Extends BaseConfig with signal-generator-specific settings."""
alpaca_api_key: str = ""
alpaca_secret_key: str = ""
signal_strength_threshold: float = 0.3
watchlist: list[str] = []
model_config = {"env_prefix": "TRADING_"}