Order Management System REST API - Trades Controller
The trades URL has no direct operations associated with it.
Trades endpoints are intended for consumers to retrieve historical trades:
- For streaming consumers to catch up on missed trades after connection loss.
- For batch or end-of-day processes to retrieve trades within a specific timeframe.
These endpoints provide the same data as the Event endpoints, but in a more compact form and filtered to just trades.
Available Endpoints
Section titled “Available Endpoints”| Endpoint | From | To | Description |
|---|---|---|---|
| Between | Position | Position | Retrieves trades between two positions. |
| FromDate | Date | Date | Retrieves trades between two timestamps. |
| FromPosition | Position | Date | Retrieves trades between a position and a timestamp. |
| ToPosition | Date | Position | Retrieves trades between a timestamp and a position. |