# Weekly Loss Limit %

Hard-cap your **weekly balance drawdown**. When realized losses reach the set percentage (relative to the weekly reference), the EA **closes all open positions** it manages and **pauses** new entries **until the next trading day**.

* **0 (Disabled):** No weekly cap; EA runs on its normal logic.
* **Custom % (e.g., 5, 10, 20):** Triggers close-all & pause for the rest of the day once the threshold is hit.

{% hint style="info" %}

### Reference (baseline for the %)

* **Use balance at week start** (predictable budget)
* **Use highest balance of week** (locks in weekly gains sooner)

> Behavior on Trigger
>
> * Closes all EA-managed open positions.
> * Pauses new orders for the remainder of the day.
> * **Auto-resumes** at the new day boundary (broker **server time**).
>   {% endhint %}

{% hint style="success" %}

### Why use it

* **Weekly risk budget** with hard enforcement.
* Reduces the chance of compounding daily losses into a deep weekly drawdown.
* With “highest balance of week,” it **protects accumulated weekly profits**.

### Examples

* **Weekly Limit 10%, Reference = Week-start balance 10,000** → trigger at **9,000** balance.
* **Weekly Limit 8%, Reference = Highest balance of week 12,500** → trigger at **11,500** balance.
  {% endhint %}

{% hint style="warning" %}

### Why not

* **Balance-based ≠ equity-based**: large unrealized losses won’t trigger until closed.
* May exit during normal pullbacks and miss recoveries.
* Not a replacement for per-trade risk controls.
  {% 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/weekly-loss-limit.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.
