Retrieve past orders (filled, cancelled, rejected) with execution details,
fill prices, and timestamps. Supports pagination and ticker filtering.
Use this to review trade history or to analyze past execution quality.
For currently active orders, use fetch_all_orders instead.
Args:
cursor: Pagination cursor from a previous response. Omit for the first page.
ticker: Filter results to a specific instrument (e.g., 'AAPL_US_EQ'). Omit for all.
limit: Number of orders per page, 1-50. Defaults to 20.
Returns:
List of HistoricalOrder with ticker, type, status, filledQuantity, fillPrice,
dateCreated, dateExecuted, and more