# Minimum net profit to close oldest position

This setting ensures that Exposure Reduction is performed **only when the recovery basket is in profit**, preventing forced closures at a loss.

{% hint style="info" %}

#### How It Works

* The EA continuously calculates the **net profit of all active trades** in the recovery basket.
* Exposure Reduction logic is allowed to proceed **only if net profit is equal to or greater than the specified value**.
* If the condition is met, the EA may close the oldest position partially or fully, depending on the selected close style.

**Special Values**

* `0 = Disabled`\
  No minimum net profit is required; exposure reduction can occur whenever other conditions are met.
* `> 0`\
  Defines the minimum net profit (in account currency) required before exposure reduction is allowed.
  {% endhint %}

{% hint style="warning" %}

#### Impact on Risk & Trade Behavior

* **Risk Control**
  * Protects against reducing exposure at a loss.
  * Helps preserve equity during unstable recovery phases.
* **Drawdown Behavior**
  * May delay exposure reduction if profit is not sufficient.
  * Encourages cleaner exposure reduction using realized gains.
* **Recovery Efficiency**
  * Improves recovery quality by using profits instead of absorbing losses.
  * Can slow exposure reduction in low-volatility conditions.
    {% endhint %}

{% hint style="info" %}

#### Interaction with Other Exposure Reduction Settings

This option works together with:

* **Reduce exposure after X recovery trades**
* **Oldest position close style**

All Exposure Reduction conditions must be met before any closure attempt is made.
{% endhint %}

{% hint style="info" %}

#### Typical Use Cases

* **Risk-controlled recovery**
  * Setting a positive value ensures exposure is reduced only from profits.
* **Aggressive drawdown reduction**
  * Disabling the filter (`0`) allows earlier exposure reduction but increases risk.
    {% endhint %}

{% hint style="warning" %}

#### Important Notes

* This setting does not override:
  * Hard Stops
  * Equity Stops
  * Daily or Weekly Loss Limits
* Profit is evaluated **at the time of the reduction attempt**, not continuously guaranteed.
* Partial closes are subject to broker minimum lot size rules.
  {% endhint %}

{% hint style="info" %}

#### Recommended Practice

Changes to profit-based exposure reduction should always be tested on a **demo account first**, especially when combined with:

* Recovery depth
* Adaptive Profit Scaling
* Oldest position close style
  {% 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/exposure-reduction/minimum-net-profit-to-close-oldest-position.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.
