list_historical_orders
Fetch executed equity orders with full details (order, fill, profit/loss) and pagination; optionally filter by ticker.
Instructions
List executed (historical) equity orders, newest first.
Returns {"items": [...], "next_cursor": str | None}. Each item has an
"order" part (id, ticker, type LIMIT|STOP|MARKET|STOP_LIMIT, side
BUY|SELL, status, quantity, filledQuantity, limitPrice, stopPrice,
timeInForce DAY|GOOD_TILL_CANCEL, currency, createdAt) and a "fill"
part (filledAt, price, quantity, type e.g. TRADE, tradingMethod
TOTV|OTC) plus a "walletImpact" with netValue and realisedProfitLoss
in the account currency. Pass next_cursor back as cursor to fetch
the next page; next_cursor is null on the last page.
Rate limit: 6 requests per 1 minute.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Items per page. | |
| cursor | No | Pagination cursor from a previous call's next_cursor. | |
| ticker | No | Filter to one Trading 212 ticker, e.g. "AAPL_US_EQ". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||