# Lock Max Drawdown per Trade to Initial Equity

* **No (Disabled):**\
  The EA continuously recalculates the drawdown limit based on current account balance.\
  This means the stop level may change as your account fluctuates.
* **Yes:** The EA “locks in” the equity value at trade opening.\
  The Max Drawdown limit will be calculated once and remain fixed until that trade is closed.

> This ensures **consistent and predictable risk control**, even if your **account balance or equity changes later** due to other trades, profits, or losses from different EAs.

{% hint style="success" %}

#### **Example**

If your **equity is $2,000** when a trade opens and **Max Drawdown per Trade = 1%**,\
the EA will close the trade once it loses **$20**, regardless of later balance or equity changes.

Even if your total equity drops to $1,500 due to other EAs or open trades,\
the Max Drawdown for that specific trade remains fixed at **$20**.
{% endhint %}

{% hint style="success" %}

#### 🧠 **Why Use It**

* Prevents drawdown thresholds from shifting due to external trades.
* Useful for accounts running **multiple EAs** or **shared strategies**.
* Keeps risk **stable and transparent** for each trade.
  {% endhint %}

{% hint style="info" %}

#### 💡 **Best Practice**

Combine this with **Custom Balance** to simulate dedicated capital for each chart or strategy, ensuring even more precise and isolated risk management.
{% 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/trade-management/lock-max-drawdown-per-trade-to-initial-equity.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.
