# 11. MA 200

{% hint style="info" %}
Don't forget that the MA value is considered at the moment the candle closes!&#x20;

if the signal consists only of MA values, it will be triggered once per bar close
{% endhint %}

<table data-full-width="true"><thead><tr><th width="227.33333333333331">Parameter</th><th>Description</th><th>Example</th></tr></thead><tbody><tr><td>🔴 MA 200 above price</td><td>Alert triggers when the 200-period Moving Average (MA200) is above the current closing price.</td><td>Alert will trigger if the closing price of BTCUSDT is below the MA200 value.</td></tr><tr><td>🟢 MA 200 below price</td><td>Alert triggers when the 200-period Moving Average (MA200) is below the current closing price.</td><td>Alert will trigger if the closing price of BTCUSDT is above the MA200 value.</td></tr><tr><td>Distance from MA200 to price in % greater than</td><td>Alert triggers when the percentage distance from the MA200 to the current closing price exceeds a specified value.</td><td>If set to "+5%", the alert will trigger when the distance from MA200 to the price is +6%, +10%, +15%, etc.<br><br>If set to "-5%", the alert will trigger at distances from MA200 to the price of -4%, -3%, 0%, +5%, +10%, etc.</td></tr><tr><td>Distance from MA200 to price in % less than</td><td>Alert triggers when the percentage distance from the MA200 to the current closing price is less than a specified value.</td><td>If set to "+5%", the alert will trigger at distances from MA200 to the price of +4%, +3%, 0%, -1%, -5%, etc.<br><br>If set to "-5%", the alert will trigger at distances from MA200 to the price of -6%, -10%, -15%, etc.</td></tr><tr><td>Distance from price to MA200 in % greater than</td><td>Alert triggers when the percentage distance from the current closing price to the MA200 exceeds a specified value.</td><td>If set to "+5%", the alert will trigger when the distance from the price to MA200 is +6%, +10%, +15%, etc.<br><br>If set to "-5%", the alert will trigger at distances from the price to MA200 of -4%, -3%, 0%, +5%, +10%, etc.</td></tr><tr><td>Distance from price to MA200 in % less than</td><td>Alert triggers when the percentage distance from the current closing price to the MA200 is less than a specified value.</td><td>If set to "+5%", the alert will trigger at distances from the price to MA200 of +4%, +3%, 0%, -1%, -5%, etc.<br><br>If set to "-5%", the alert will trigger at distances from the price to MA200 of -6%, -10%, -15%, etc.</td></tr></tbody></table>

#### Calculation formulas:

* `Distance from MA to price in % = (Price - MA) / MA * 100`
* `Distance from price to MA in % = (MA - Price) / Price * 100`


---

# 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.cvizor.com/en/modules/signals/tf-parameters/ma-200.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.
