Activity feed and live data
How to read the strategy activity feed — evaluation ticks, order events, errors, and edits.
The activity feed is a reverse-chronological log of everything that happened in the lifecycle of an agent.
What event types are logged?
| Type | Description |
|---|---|
evaluation | The engine checked conditions at candle close. Shows all indicator values. |
entry | Conditions met; order placed. Shows order ID, fill price, and quantity. |
exit | Exit condition met; order placed. Shows reason (TP/SL/TS/indicator), fill price, and P&L. |
skip | Conditions not met, or balance too low. Shows reason. |
edit | Strategy parameters changed. Shows old and new values. |
error | Exchange API error or validation failure. Shows the raw error code. |
paused | Agent paused (low balance, credit limit, or manual pause). |
resumed | Agent resumed after being paused. |
How do I read an evaluation event?
Click any evaluation row to expand it:
{
"timestamp": "2026-05-29T14:00:00Z",
"interval": "1h",
"indicators": {
"RSI(14)": 27.3,
"EMA(9)": 67420.5,
"EMA(21)": 66890.2
},
"entry_met": true,
"action": "entry_placed"
}This shows you exactly what the indicator values were at the candle that triggered the entry.
How do I read an order event?
{
"type": "entry",
"order_id": "ord_abc123",
"exchange": "binance",
"symbol": "BTC/USDT",
"side": "buy",
"quantity": 0.012,
"fill_price": 67450.0,
"fee_usd": 0.81
}The order ID links directly to your exchange's order history.
How do I filter the feed?
Use the filter bar above the feed to show only certain event types. For debugging, use evaluation + error to focus on what happened at each candle without the noise of pause/resume events.
How do I export the feed?
Click Export CSV to download the full event log. Useful for auditing, debugging, or tax records.