Returns all trades between start time and end time, up to seven days ago for the specified source.
Name | Type | Description | Notes |
---|---|---|---|
source | String | The specific source of the data being requested. | |
start_date | Date | The start date for the data being requested. | [optional] |
start_time | String | The start time for the data being requested. | [optional] |
end_date | Date | The end date for the data being requested. | [optional] |
end_time | 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] |
page_size | Integer | The maximum number of results to return per page. | [optional] [default to 100] |
darkpool_only | BOOLEAN | Set to true to show only darkpool trades | [optional] [default to false] |
min_size | Integer | Trades must be larger or equal to this size. | [optional] |
next_page | String | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
next_page | 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 | Array | Array of all the trades in this page of the result. |
Name | Type | Description |
---|---|---|
symbol | String | The ticker symbol |
timestamp | DateTime | The UTC timestamp at the time of the trade. |
price | Float | The price of the trade. |
size | Float | The size of the trade. |
total_volume | Float | The total volume of the symbol for the day up to the timestamp point in time. |
market_center | String | The market center for the trade. |
condition | String | The condition of the trade. |
is_darkpool | BOOLEAN | If the trade was darkpool or not. |