Returns a list of interval data points for a contract.
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | The Intrinio ID or code of the options contract to request intervals for. | |
intervalSize | string | The time length of the interval. | |
source | string | Realtime or 15-minute delayed contracts. | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
endTime | DateTime? | The inclusive UTC date and time the intervals end at. | [optional] |
Name | Type | Description |
---|---|---|
Intervals | List | Array of all the intervals in the result. |
Contract | string | The option contract for the intervals |
Size | string | The size of the time span for the interval. |
Name | Type | Description |
---|---|---|
OpenTime | DateTime? | The UTC timestamp for the time this interval opened. |
CloseTime | DateTime? | The UTC timestamp for the time this interval closed. |
Open | decimal? | The first traded contract price in this interval. |
High | decimal? | The highest traded contract price in this interval. |
Low | decimal? | The lowest traded contract price in this interval. |
Close | decimal? | The last traded contract price in this interval. |
Volume | decimal? | The volume of contracts traded in this interval. |
Average | decimal? | The volume weighted average price of contract trades in this interval. |
Change | decimal? | The ratio of Close minus Open to Open. |
TradeCount | decimal? | The number of qualified trades executed during the period |