Returns all trades for a symbol between start time and end time, up to seven days ago for the specified source.
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | The ticker symbol for which trades are being requested. | |
source | string | The specific source of the data being requested. Specifying delayed sip will result in the system automatically determining which delayed sip source (cta_delayed, cta_b_delayed, utp_delayed, otc_delayed) to use. | |
startDate | DateTime? | The start date for the data being requested. | [optional] |
startTime | string | The start time for the data being requested. | [optional] |
endDate | DateTime? | The end date for the data being requested. | [optional] |
endTime | string | The end time for the data being requested. | [optional] |
timezone | string | The timezone the start and end date/times use. | [optional] [default to UTC] |
darkpoolOnly | bool? | Set to true to show only darkpool trades | [optional] [default to false] |
pageSize | int? | The maximum number of results to return per page. | [optional] [default to 100] |
minSize | int? | Trades must be larger or equal to this size. | [optional] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
NextPage | string | The token required to request the next page of the data. If null, no further results are available. |
Source | string | The source of the trades. |
Trades | List | Array of all the trades in this page of the result. |