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

# TicksFilteredSubscribe

**`TicksFilteredSubscribe-`** subscription to receive prices for instruments filtered by time.

Example:

```json
{"id": 11, "type":"TicksFilteredSubscribe", "body": {"symbol":["EURUSD.s”,”BTCUSD.s"], “override“: true}} 
```

**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 ticks feed subscriptions that filltered by time according parameters from env variables</td></tr><tr><td><code>override</code></td><td>false</td><td><code>bool</code></td><td>an optional boolean flag to overried allready subscribed list of instrument with a newly provided, if the flag is not provided the symbols will be added to alrady subscribed instruments. <em><strong>Note</strong>: In case the flag set to true and symbol has an empty array the system will unsubscribe from all instruments</em></td></tr></tbody></table>

**Response Type** - `TicksFilteredSubscribe`.

**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": "TicksFilteredSubscribe", "id":11, "body": {"symbol": ["EURUSD.s","BTCUSD.s"]}}
```
