From 7c05359bccfa0ca50a8f55c1a99cfadd731c8e89 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 18:06:25 +0900 Subject: fix: resolve final 3 issues for production readiness - Fix API strategies endpoint path resolution (use STRATEGIES_DIR env var) - Add DATABASE_URL env var override in alembic env.py - Move risk config fields to shared Settings base class - Remove duplicate fields from ExecutorConfig --- services/order-executor/src/order_executor/config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'services/order-executor/src/order_executor') diff --git a/services/order-executor/src/order_executor/config.py b/services/order-executor/src/order_executor/config.py index 14828ea..6542a31 100644 --- a/services/order-executor/src/order_executor/config.py +++ b/services/order-executor/src/order_executor/config.py @@ -4,7 +4,4 @@ from shared.config import Settings class ExecutorConfig(Settings): - risk_trailing_stop_pct: float = 0.0 - risk_max_open_positions: int = 10 - risk_volatility_lookback: int = 20 - risk_volatility_scale: bool = False + pass -- cgit v1.2.3