Returns all trades for a contract between start time and end time, up to seven days ago for the specified source.
Name | Type | Description | Notes |
---|---|---|---|
identifier | str | The option contract for which trades are being requested. | |
source | str | The specific source of the data being requested. | [optional] |
start_date | date | The start date for the data being requested. | [optional] |
start_time | str | The start time for the data being requested. | [optional] |
end_date | date | The end date for the data being requested. | [optional] |
end_time | str | The end time for the data being requested. | [optional] |
timezone | str | The timezone the start and end date/times use. | [optional] [default to UTC] |
page_size | int | The maximum number of results to return per page. | [optional] [default to 100] |
min_size | int | Trades must be larger or equal to this size. | [optional] |
next_page | str | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
next_page | str | The token required to request the next page of the data. If null, no further results are available. |
source | str | The source of the trades. |
trades | list[OptionTrades] | Array of all the trades in this page of the result. |
Name | Type | Description |
---|---|---|
contract | str | The option contract |
underlying_symbol | str | 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. |
ask_price_at_execution | float | The price of ask quote at the time of the trade. |
bid_price_at_execution | float | The price of bid quote at the time of the trade. |
exchange | str | The exchange for the trade. |
conditions | str | The condition of the trade. |
sequence_id | float | The sequential ID for the trade, ordered as temporally received from the exchange. |