Kodeus
Warren

Runtime Configuration

Set trading defaults for new deployments, then let account-wide risk limits (leverage cap, drawdown caps, per-strategy limits, loss-streak pauses) act automatically in code.

Configuration in Warren has two halves. The first is a set of trading defaults you choose: what a new bot or position should assume when you do not say otherwise. The second is a set of account-wide risk limits that you set once and then act automatically, in code, without waiting to be asked.

Configurable preferences

These defaults apply to new deployments and can be overridden per bot or per position:

  • Preferred exchanges
  • Preferred trading pairs
  • Amount per trade (stake)
  • Maximum open trades
  • Trading mode preferences (paper or live)
  • Spot or futures preferences

The platform also calculates required capital dynamically from your runtime configuration, so the stake, leverage, and open-trade settings together determine how much of your trading allocation a deployment reserves.

Account-wide risk limits

Beyond per-bot guards, Warren enforces a layer of account-wide rules that apply across every bot and across Warren's own discretionary book. You set them once; the engine applies them automatically. They live on the Risk screen, and when one is breached the affected trading auto-stops and you are alerted.

ParameterWhat it doesHow it acts
Leverage capA ceiling on position leverage, capped at a small single-digit multiple, well below the venue's native 20–125×.Enforced in code. Blocks risky configuration combinations before a bot can start, not after.
Max DrawdownA ceiling on account-wide peak-to-trough loss (the total drawdown cap).Auto-stops trading when cumulative loss hits the limit.
Max Daily LossA ceiling on realized loss inside a single day.Auto-stops trading for the day when the day's loss reaches the limit.
Per-strategy capital limitsA cap on how much of the trading allocation any single strategy may commit.Keeps one bot from monopolizing the shared capital pool.
Loss-streak pausesA consecutive-loss circuit breaker.Pauses a strategy after a run of losses so it can be reviewed before it keeps bleeding.
Max Open TradesA cap on concurrent open positions.Blocks new entries once the ceiling is reached.

These limits are hard mechanisms, not advice. Over-leverage is the fastest path to liquidation: at high leverage the liquidation distance shrinks below normal market noise, so the leverage cap is what makes the rest of the risk framework meaningful. The cap and the auto-stops are enforced in code and cannot be talked past.

Per-bot guards (auto-stop after N trades, a take-profit target, a trailing stop, and a max-loss cap) stack on top of these account-wide limits. See Execution for the per-bot controls.

Strategy activation

After allocation is configured, Warren activates the selected strategy. The current runtime experience displays:

  • Selected strategy
  • Trading mode
  • Allocation amount
  • Connected exchange
  • Selected pair
  • Runtime status
  • Performance visibility

Strategies immediately transition into monitoring after activation.

Continue

Next: Dashboard Overview

On this page