Returns a list of interval data points for a contract.
Name | Type | Description | Notes |
---|---|---|---|
identifier | str | The Intrinio ID or code of the options contract to request intervals for. | |
interval_size | str | The time length of the interval. | |
source | str | Realtime or 15-minute delayed contracts. | [optional] |
page_size | int | The number of results to return | [optional] [default to 100] |
end_time | datetime | The inclusive UTC date and time the intervals end at. | [optional] |
Name | Type | Description |
---|---|---|
intervals | list[OptionInterval] | Array of all the intervals in the result. |
contract | str | The option contract for the intervals |
size | str | The size of the time span for the interval. |
Name | Type | Description |
---|---|---|
open_time | datetime | The UTC timestamp for the time this interval opened. |
close_time | datetime | The UTC timestamp for the time this interval closed. |
open | float | The first traded contract price in this interval. |
high | float | The highest traded contract price in this interval. |
low | float | The lowest traded contract price in this interval. |
close | float | The last traded contract price in this interval. |
volume | float | The volume of contracts traded in this interval. |
average | float | The volume weighted average price of contract trades in this interval. |
change | float | The ratio of Close minus Open to Open. |
trade_count | float | The number of qualified trades executed during the period |