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

# TicksFilteredSubscriptions

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

Example:

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

**Request Body Fields:** n/a

**Response Type** - `TicksFilteredSubscriptions`.

**Response Body Fields:**

<table><thead><tr><th>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>json array of strings with a list of instruments within subscribed filtered ticks feed</td></tr></tbody></table>

**Example:**

```json
{
    "type": "TicksFilteredSubscriptions",
    "id": 11,
    "body": {
        "symbol": ["EURUSD","GBPUSD"]
    }
}
```
