# Deadband

To filter values received from time series data source you can specify the deadband. It is determined by the positive real number. The following deadband modes are supported.

* **None:** filtering of samples is not performed.
* **Absolute:** filtering of new sample is performed if the absolute value of difference between the current and the new values is less than or equal to the specified value of the deadband, e.g.: *CurrentValue = 7; NewValue = 15; Deadband = 10; Delta = Abs(7 - 15) = 8; Delta (8) < Deadband (10)*. Thus the new value will be filtered.
* **Percent**: filtering of new sample is performed if the absolute value of difference between the current and the new values is less than or equal to the specified value of the deadband in percentage correlation, e.g.: *CurrentValue = 1000; NewValue = 1200; Deadband = 15; Delta = Abs(1000 - 1200) = 200; Percent = CurrentValue / 100 ✕ Deadband = 150; Delta (200) > Percent (150)*. Thus the value will not be filtered.


---

# 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://docs.monokot.io/time-series-and-stores/time-series/deadband.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.
