| Name | Type | Description |
|---|---|---|
| time | OffsetDateTime | The timestamp that represents the start of the interval span. |
| open | BigDecimal | The first traded price during the period |
| close | BigDecimal | The last traded price during the period |
| high | BigDecimal | The highest price over the span of the period |
| low | BigDecimal | The lowest price over the span of the period |
| closeTime | OffsetDateTime | The timestamp that represents the end of the interval span. |
| interval | IntervalEnum | The size of the interval. |
| average | BigDecimal | The average trade price of an individual stock during the interval. |
| change | BigDecimal | The change ratio from open to close. ((Close - Open)/Open). |
| Name | Value |
|---|---|
| SIXTYMINUTE | "SixtyMinute" |
| THIRTYMINUTE | "ThirtyMinute" |
| FIFTEENMINUTE | "FifteenMinute" |
| TENMINUTE | "TenMinute" |
| FIVEMINUTE | "FiveMinute" |
| ONEMINUTE | "OneMinute" |