Returns a list of intervals for the biggest movers by volume over the last hour interval.
Name | Type | Description | Notes |
---|---|---|---|
source | string | Realtime or 15-minute delayed contracts. | [optional] |
openTime | DateTime? | The inclusive UTC date and time the interval opens at. | [optional] |
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. |
Size | string | The size of the time span for the interval. |
Intervals | List | Array of all the intervals in the result. |
Name | Type | Description |
---|---|---|
Symbol | string | The ticker symbol for the interval |
Change | decimal? | The ratio of Close minus Open to Open. |
Open | decimal? | The first traded price in this interval. |
High | decimal? | The highest traded price in this interval. |
Low | decimal? | The lowest traded price in this interval. |
Close | decimal? | The last traded price in this interval. |
Volume | decimal? | The volume of shares in this interval. |
Average | decimal? | The volume weighted average price of trades in this interval. |
TradeCount | decimal? | The of trades in this interval. |