diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 18:06:25 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 18:06:25 +0900 |
| commit | 7c05359bccfa0ca50a8f55c1a99cfadd731c8e89 (patch) | |
| tree | e6d182f6ce6c32b6d53aefa5d2cd7677e154e3eb /services/order-executor/src | |
| parent | 1270e5edfa8e00ec6306e0921c54d5c130a01b54 (diff) | |
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
Diffstat (limited to 'services/order-executor/src')
| -rw-r--r-- | services/order-executor/src/order_executor/config.py | 5 |
1 files changed, 1 insertions, 4 deletions
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 |
