Returns a list of intervals for the biggest movers by change over the last hour interval.
Name | Type | Description | Notes |
---|---|---|---|
source | str | Realtime or 15-minute delayed contracts. | [optional] |
open_time | datetime | The inclusive UTC date and time the interval opens at. | [optional] |
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. |
size | str | The size of the time span for the interval. |
intervals | list[OptionIntervalMover] | Array of all the intervals in the result. |
Name | Type | Description |
---|---|---|
contract | str | The option contract for the intervals |
change | float | The ratio of Close minus Open to Open. |
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. |
trade_count | float | The number of contract trades executed in this interval |