# Equity Stop

The **Equity Stop** is a safety mechanism designed to protect your account from large drawdowns.&#x20;

When your **account equity** (balance + open trade profits/losses) falls below the value you set, the EA will:

* **Close all open trades** immediately.
* **Pause trading automatically** until you manually resume it.

This acts as a “last line of defense,” ensuring that unexpected market moves or prolonged drawdowns don’t cause catastrophic losses.

{% hint style="info" %}

#### **Example**

* If you set `EqStop = 5000`, the EA will close all trades and pause trading when equity drops below **$5,000**.
* If your balance is $10,000 and equity falls to $4,950, all trades will close and the EA will remain paused.
  {% endhint %}

{% hint style="success" %}

#### **Why You Might Use It**

* **Capital Protection:** Prevents total account wipeout during unexpected volatility.
* **Peace of Mind:** You know your losses will never exceed a fixed limit.
* **Manual Control:** Gives you time to review market conditions and resume when ready.
* **Useful for Prop Accounts:** Helps avoid breaching daily or overall drawdown limits.
  {% endhint %}

{% hint style="warning" %}

#### **Why You Might&#x20;*****NOT*****&#x20;Use It**

* **Prevents Recovery:** If set too close to your current balance, it can trigger early — closing trades before the EA has time to recover naturally.
* **Interrupts Trading:** Once triggered, the EA will stop trading completely until resumed manually.
* **Reduced Performance:** On small accounts, using too tight of an EqStop can limit the EA’s full potential.
  {% endhint %}

{% hint style="danger" %}

#### **Important Warnings**

* Setting EqStop **too low** can expose your account to deep drawdowns.
* Setting EqStop **too high** (too close to your balance) may **prevent recovery**, as trades could close just before the market turns in your favor.
* Always allow **enough room for recovery** based on your risk level and the EA’s trading style.
  {% endhint %}

{% hint style="success" %}

#### **🧭 Best Practice**

* Always **test on a demo account** before using EqStop live.
* Start with EqStop **10–15% below** your balance to allow natural recovery.
* Combine with other safety tools like **Hard Stop %** or **News Filter** for extra protection.
* Monitor your trades during volatile periods (news events, major economic releases).
* Resume the EA manually only after market conditions stabilize.<br>

**Your final safety brake.**\
Use it to protect your capital — but give the EA enough space to recover and work effectively.\
When used correctly, it balances **safety and performance**, especially for large accounts or prop firm challenges.
{% 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/account-protection/equity-stop.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.
