summaryrefslogtreecommitdiff
path: root/services/strategy-engine/pyproject.toml
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:52:03 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:52:03 +0900
commite971d19678a7ce94666e5887909823cdd2a6cab2 (patch)
tree9f7baf1b72e52cbe003251dc68e8201169cf03ce /services/strategy-engine/pyproject.toml
parentac6d98b7790506128cb3f65dfdbb2d9d9ddce555 (diff)
fix: resolve critical deployment blockers
- Add Alembic initial migration (6 tables: candles, signals, orders, trades, positions, portfolio_snapshots) - Expose health ports (8080-8083) in docker-compose with healthchecks - Add numpy dependency to strategy-engine pyproject.toml
Diffstat (limited to 'services/strategy-engine/pyproject.toml')
-rw-r--r--services/strategy-engine/pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/strategy-engine/pyproject.toml b/services/strategy-engine/pyproject.toml
index a86b282..4f5b6be 100644
--- a/services/strategy-engine/pyproject.toml
+++ b/services/strategy-engine/pyproject.toml
@@ -5,6 +5,7 @@ description = "Plugin-based strategy execution engine"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.0",
+ "numpy>=1.20",
"trading-shared",
]