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 | Date | The start date for the data being requested. | [optional] |
startTime | String | The start time for the data being requested. | [optional] |
endDate | Date | 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 | Boolean | Set to true to show only darkpool trades | [optional] [default to false] |
pageSize | Number | The maximum number of results to return per page. | [optional] [default to 100] |
minSize | Number | 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 | [SecurityTrades] | Array of all the trades in this page of the result. |
Name | Type | Description |
---|---|---|
symbol | String | The ticker symbol |
timestamp | Date | The UTC timestamp at the time of the trade. |
price | Number | The price of the trade. |
size | Number | The size of the trade. |
totalVolume | Number | The total volume of the symbol for the day up to the timestamp point in time. |
marketCenter | String | The market center for the trade. |
condition | String | The condition of the trade. |
isDarkpool | Boolean | If the trade was darkpool or not. |