Skip to content

Activity feed and live data

How to read the strategy activity feed — evaluation ticks, order events, errors, and edits.

Updated 2026-05-29·2 min read

The activity feed is a reverse-chronological log of everything that happened in the lifecycle of an agent.

What event types are logged?

TypeDescription
evaluationThe engine checked conditions at candle close. Shows all indicator values.
entryConditions met; order placed. Shows order ID, fill price, and quantity.
exitExit condition met; order placed. Shows reason (TP/SL/TS/indicator), fill price, and P&L.
skipConditions not met, or balance too low. Shows reason.
editStrategy parameters changed. Shows old and new values.
errorExchange API error or validation failure. Shows the raw error code.
pausedAgent paused (low balance, credit limit, or manual pause).
resumedAgent 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.

Was this article helpful?

Trading involves risk. Past performance is not indicative of future results. Never trade with funds you cannot afford to lose. Coinrule does not provide financial advice.

Still stuck?

Contact support