> 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/subscriptions/candle.md).

# Candle

**Triggered by**: [CandleSubscribe](/tradesync/fxtr-v2/functions-of-fxtr-v2/open-stream-for-the-account/messages-that-can-be-sent-in-open-stream/candlesubscribe.md)

**Switched off by**: [CandleUnsubscribe](/tradesync/fxtr-v2/functions-of-fxtr-v2/open-stream-for-the-account/messages-that-can-be-sent-in-open-stream/candleunsubscribe.md)

**Response Type** - `FilteredTick`.

**Response Body Fields:**

<table><thead><tr><th width="203">Parameter</th><th width="167" data-type="checkbox">Always returned</th><th width="147">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>symbol</code></td><td>true</td><td><code>string</code></td><td>symbol for which a candle was received</td></tr><tr><td><code>time</code></td><td>true</td><td><code>int64</code></td><td>time of ticks in milliseconds in UTC</td></tr><tr><td><code>open</code></td><td>true</td><td><code>double</code></td><td>open candle price</td></tr><tr><td><code>high</code></td><td>true</td><td><code>double</code></td><td>high candle price</td></tr><tr><td><code>low</code></td><td>true</td><td><code>double</code></td><td>low candle price</td></tr><tr><td><code>close</code></td><td>true</td><td><code>double</code></td><td>close candle price</td></tr><tr><td><code>volume</code></td><td>true</td><td><code>double</code></td><td>always 0, not used</td></tr></tbody></table>

**Example:**&#x20;

```json
{
    "type": "Candle",
    "body": {
        "symbol": "GBPUSD",
        "time": 1699878660000,
        "open": 1.22361,
        "high": 1.22362,
        "low": 1.2235,
        "close": 1.22359,
        "volume": 0
    }
}
```
