# Candle

| Field          | Value                            | Type                                                                                                                                                     |
| -------------- | -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **type**       | Always `Candle`                  | String **required**                                                                                                                                      |
| **candleType** | Type of the candle               | String, **required**                                                                                                                                     |
| **symbol**     | Unique instrument symbol         | String **required**                                                                                                                                      |
| **open**       | First (open) price of the candle | [Number](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/getting-started/data-types-and-formats), **required** |
| **high**       | High price of the candle         | [Number](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/getting-started/data-types-and-formats), **required** |
| **low**        | Low price of the candle          | [Number](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/getting-started/data-types-and-formats), **required** |
| **close**      | Close price of the candle        | [Number](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/getting-started/data-types-and-formats), **required** |
| **volume**     | Total volume in the candle       | [Number](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/getting-started/data-types-and-formats), **required** |
| **time**       | Bid timestamp in UTC             | Timestamp, **required**                                                                                                                                  |

## *<mark style="color:blue;">**string**</mark>***&#x20;candleType**

Possible values:

* `m` (1 min)
* `5m` (5 min)
* `15m` (15 minutes)
* `30m` (30 minutes)
* `h` (1 hour)
* `2h` (2 hours)
* `4h` (4 hours)
* `d` (Day)
* `w` (Week)
* `mo` (Month)
