summaryrefslogtreecommitdiff
path: root/services/order-executor/src/order_executor/config.py
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:27:16 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:27:16 +0900
commit23e60d37f8f55386ab7c1378a50db11a9c386dc6 (patch)
treefa02de5d1681b03ceb37ce64f4c77a945065a088 /services/order-executor/src/order_executor/config.py
parent7d7ecadca4f7416eb252afce750e75e696d54a94 (diff)
feat(risk): add trailing stop, volatility sizing, and position limits
Diffstat (limited to 'services/order-executor/src/order_executor/config.py')
-rw-r--r--services/order-executor/src/order_executor/config.py5
1 files changed, 4 insertions, 1 deletions
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