diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-02 10:12:06 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-02 10:12:06 +0900 |
| commit | 35120795147adf53de59b7f2a3c8aa14adec9a56 (patch) | |
| tree | fb747eae72d40fbf0520d6bca917cd0e0ba87b66 /services/data-collector/src/data_collector/config.py | |
| parent | 47465828d839c460a6af12894451539908d76c26 (diff) | |
refactor: update data-collector and order-executor for Alpaca API
Diffstat (limited to 'services/data-collector/src/data_collector/config.py')
| -rw-r--r-- | services/data-collector/src/data_collector/config.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/services/data-collector/src/data_collector/config.py b/services/data-collector/src/data_collector/config.py index 1e080e5..4761013 100644 --- a/services/data-collector/src/data_collector/config.py +++ b/services/data-collector/src/data_collector/config.py @@ -1,6 +1,8 @@ +"""Data Collector configuration.""" from shared.config import Settings class CollectorConfig(Settings): - symbols: list[str] = ["BTC/USDT"] - timeframes: list[str] = ["1m"] + symbols: list[str] = ["AAPL", "MSFT", "GOOGL", "AMZN", "TSLA"] + timeframes: list[str] = ["5Min"] + poll_interval_seconds: int = 60 |
