Activity feed and logs
What the activity feed records, how to read it, and exporting positions.
Each strategy records its full lifecycle in an activity feed — 11 distinct event types from deployment through orders, errors, and stops — shown in reverse-chronological order on the strategy detail page. This article explains what each event means, how to read the feed, and how to export positions as CSV.
What does the activity feed record?
Each strategy has an activity feed on its detail page. Events logged include:
| Event type | Description |
|---|---|
strategy.deployed | Strategy was loaded by the engine |
strategy.started | Strategy began evaluation |
strategy.paused | Strategy was paused |
strategy.resumed | Strategy was resumed |
strategy.stopped | Strategy was stopped |
strategy.completed | Strategy reached completion |
order.opened | A buy/open order was placed |
order.filled | An order was filled by the exchange |
order.closed | A position was closed |
order.error | An order failed |
strategy.error | A non-fatal strategy error |
Events are stored in the database and are visible as long as the strategy exists.
How do I read the feed?
Events are shown in reverse chronological order (newest first). Each event includes a timestamp, type, and a message with details (symbol, price, quantity, error message, etc.).
How do I export positions?
On the strategy detail page, you can Export positions as CSV. This downloads a CSV file with all positions and their fill details.
For a consolidated view across all strategies, see Trade history and exports.