Overview
Traders are automated trading bots that execute strategies on connected exchanges. Each trader runs as an isolated container (pod) with its own configuration, API server, and webhook system.Trader Lifecycle
Create an empty trader
Creates a trader with sensible defaults:
dry_run: true, API server enabled, stressShield active.Assign exchange, strategy, and pair handling
Patch with
exchangeId, strategyId, handling (pair list method), and plugins.Step 1: Create Trader
Response
Step 2: Configure Trader
Assign an exchange, strategy, pair handling method, and plugins:Response
Pair Handling Methods
| Method | Description |
|---|---|
VolumePairList | Select pairs by trading volume (default: top 50) |
StaticPairList | Use exchange whitelist as fixed pair list |
Plugins
| Plugin | Description |
|---|---|
sortByPerformance | Sort pairs by recent trade performance |
ignoreLowValue | Skip pairs with very low value |
removeRecentlyListed | Filter out newly listed pairs (< 30 days) |
Step 3: Start Trading
Response
Pod Commands
Once running, send commands to the trader’s pod via the API:Available Commands
| Action | Description |
|---|---|
ping | Check if pod is responsive (returns pong) |
start | Resume trading |
stop | Pause trading (keeps pod running) |
status | Get current trading status |
balance | Get account balance |
profit | Get profit summary |
daily | Get daily profit report |
performance | Get pair performance stats |
trades | List recent trades |
whitelist | Get active whitelist |
blacklist | Get active blacklist |
locks | Get pair locks |
available_pairs | List available trading pairs |
logs | Get bot logs |
reload_config | Hot-reload configuration |
forcesell | Force close a position |
Example: Check Profit
Response
Stop Trading
Pod Events (Webhooks)
The trader pod sends real-time events via webhooks. Query events for a trader:Response
Stress Shield
ThestressShield feature monitors market stress signals and can automatically pause trading during high-volatility events:
strategy_msg webhooks from the stress monitoring system.
Key Fields
| Field | Type | Description |
|---|---|---|
dry_run | boolean | Paper trading mode (default: true) |
dry_run_wallet | number | Virtual wallet size for paper trading |
stake_currency | string | Quote currency for trading (e.g. USDT) |
stake_amount | string/number | Amount per trade ("unlimited" or fixed amount) |
running | boolean | Whether the bot pod is active |
exchangeId | string | Connected exchange ID |
strategyId | string | Active strategy ID |
handling | string | Pair selection method |
plugins | object | Active pair filter plugins |
pairlists | array | Generated pair list pipeline |
pod | object | Container state (when running) |
stressShield | object | Market stress protection config |
webhook | object | Webhook configuration for pod events |
api_server | object | Pod API server configuration |
unfilledtimeout | object | Timeout for unfilled orders {entry, exit} |

