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

# TicksFilteredUnsubscribe

**`TicksFilteredUnsubscribe`**- unsubscribe from receiving a stream of filtered prices.

Example:

```json
{"id": 11, "type":"TicksFilteredUnsubscribe", "body": {"symbol":["EURUSD.s","BTCUSD.s"]}}
```

**Request Body Fields:**

<table><thead><tr><th>Parameter</th><th width="125" data-type="checkbox">Required</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>json array of strings with a list of instruments for filtered ticks feed unsubscriptions</td></tr></tbody></table>

**Response Type** - `TicksFilteredUnsubscribe`.

**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 unsubscribed filtered ticks feed</td></tr></tbody></table>

**Example:**

```json
{"type": "TicksFilteredUnsubscribe", "id":11, "body": {"symbol": ["EURUSD.s","BTCUSD.s"]}}
```
