# Tracker filters

<figure><img src="/files/JXxexhK9ZbSL8n7ICx4H" alt=""><figcaption></figcaption></figure>

* Первое поле это название фильтра, например Reg
* Второе поле это условие для фильтрации, для фильтрации по трекер дате доступны два параметра event и cost

  * event - тип ивента
  * cost - текущий баланс чата

  Например вам нужно быстро получить чаты у которых есть регистрация, для этого создаете фильтр с условием event = registration. Или например нужно получить чаты у которых есть FD для этого можно создать фильтр с условием event = sale. Для параметра cost можно задавать фильтрацию по интервалу, например вам нужны чаты у которых баланс 20-50$ для этого нужно создать фильтр с условием cost > 20 and cost < 50.

После того, как фильтры будут сохранены, они будут доступны на странице чатов\
![](/files/sNtjbBLUn4kagIiN1RDY)

Также вы можете прописать отрицательное условие. Например, event != registration\
\
Если вы хотите отдельно отображать клиентов, которые зарегестрировались (reg), но не сделали депозит (fd), ваше условие будет выглядеть так: <br>

{% hint style="info" %}
event = registration and event != sale
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.chatterfy.ai/custom-chats-filters/tracker-filters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
