From 23e60d37f8f55386ab7c1378a50db11a9c386dc6 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:27:16 +0900 Subject: feat(risk): add trailing stop, volatility sizing, and position limits --- services/order-executor/src/order_executor/config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'services/order-executor/src/order_executor/config.py') diff --git a/services/order-executor/src/order_executor/config.py b/services/order-executor/src/order_executor/config.py index 6542a31..14828ea 100644 --- a/services/order-executor/src/order_executor/config.py +++ b/services/order-executor/src/order_executor/config.py @@ -4,4 +4,7 @@ from shared.config import Settings class ExecutorConfig(Settings): - pass + risk_trailing_stop_pct: float = 0.0 + risk_max_open_positions: int = 10 + risk_volatility_lookback: int = 20 + risk_volatility_scale: bool = False -- cgit v1.2.3