diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:27:16 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:27:16 +0900 |
| commit | 23e60d37f8f55386ab7c1378a50db11a9c386dc6 (patch) | |
| tree | fa02de5d1681b03ceb37ce64f4c77a945065a088 /services/order-executor/src/order_executor/config.py | |
| parent | 7d7ecadca4f7416eb252afce750e75e696d54a94 (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.py | 5 |
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 |
