> For the complete documentation index, see [llms.txt](https://tradesync.gitbook.io/tradesync/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tradesync.gitbook.io/tradesync/fxtr-v2/functions-of-fxtr-v2/open-stream-for-the-account/messages-that-can-be-sent-in-open-stream/candlesubscriptions.md).

# CandleSubscriptions

**`CandleSubscriptions`** - get a list of subcribed ticks instrument.

Example:

```json
{"id": 11, "type":"CandleSubscriptions", "body": {}}
```

**Request Body Fields:** n/a

**Responce Type** - `CandleSubscriptions`.

**Responce Body Fields:**

<table><thead><tr><th>Parameter</th><th width="183" data-type="checkbox">Always returned</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><code>symbol</code></td><td>true</td><td><code>string</code></td><td>comma separated string with a list of instruments within 1 min candles update</td></tr></tbody></table>

**Example:**

```json
{
    "type": "CandleSubscriptions",
    "id": 11,
    "body": {
        "symbol": "EURUSD,GBPUSD"
    }
}
```
