# Recovery lot size multiplier

It allows you to **adjust the aggressiveness** of the recovery mechanism — helping the EA recover from drawdowns faster or more safely, depending on your preference.

#### **How It Works**

When the EA detects a drawdown and opens **recovery trades**, the **Recovery Lot Size Multiplier** is applied to the base calculated lot size:

* **1.0 (Default)** – Recovery trades use the calculated lot size.
* **0.5** – Recovery trades are **smaller** (half the size), lowering risk but slowing recovery.
* **2.0** – Recovery trades are **larger** (double the size), allowing faster recovery but increasing exposure.

{% hint style="info" %}
Example:\
If the EA’s normal trade lot is **0.10** and the multiplier is set to **2**, recovery trades will open at **0.20 lots**.
{% endhint %}

{% hint style="success" %}

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

✅ To **speed up recovery** after temporary drawdowns.\
✅ To **fine-tune risk control** when combined with different Risk Levels or Trading Styles.\
✅ To adjust how aggressively the EA compensates for losing trades.
{% endhint %}

{% hint style="danger" %}

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

❌ Setting it **too high** can lead to excessive exposure during volatile conditions.\
❌ On smaller accounts, **large recovery lots** may trigger the Hard Stop or Equity Stop prematurely.\
❌ Setting it **too low** may slow recovery, leaving trades open longer.
{% endhint %}

{% hint style="success" %}

#### **Best Practice**

* Use **1.0** (default) for balanced recovery.
* For safer setups or smaller accounts, use **0.5–0.8**.
* For aggressive recovery on larger accounts with sufficient margin, use **1.5–2.0**.
* Always **test on demo first** to observe how your equity curve responds under different market conditions.
  {% endhint %}

{% hint style="info" %}
**Note:** The EA does not use martingale. This multiplier only adjusts recovery trade size based on your risk level, equity, and style — keeping it fully **dynamic and controlled**.
{% 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/recovery/recovery-lot-size-multiplier.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.
