# Break Even in account currency

* **0 (Disabled):** The EA will not close trades based on this rule.
* **Positive Value (e.g., 10):** The EA will close all trades if the combined profit is greater than or equal to 10.00 (account currency).
* **Negative Value (e.g., -3):** The EA will close all trades if the combined loss is less than or equal to `-3.00` (account currency).

{% hint style="info" %}

#### 🛠️ How It Works

* It only activates when **more than one trade is open**.
* The EA checks the **total floating profit/loss** from all open trades.
* If the combined profit/loss exceeds your Break Even threshold, **all trades are closed immediately.**

This feature is especially useful for **recovery situations**, where you have multiple trades open and want to **break even** or limit further loss.
{% endhint %}

{% hint style="success" %}

#### When to Use

* You want to **close the full basket** of trades once the profit is over your set value (even negative) avoiding holding positions longer than needed.
* You are using **recovery strategies**, and prefer to exit all positions when overall profit turns positive.
* You want to **cut losses early** by setting a small negative value (e.g., `-3.00`).
  {% endhint %}

{% hint style="warning" %}

#### ⚠️ Things to Keep in Mind

* The Break Even check applies only when **two or more trades are open.** It has no effect if there's only one trade running.
* It works well with **Recovery Mode**, acting as a safety net to lock in modest gains or break even early with a small loss.
  {% 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://smartchoise.gitbook.io/smartchoise-manual/options/profit-management/break-even-in-account-currency.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.
