# Reference for weekly limit

The EA compares your **current balance** to this baseline; when the loss reaches your Weekly Loss Limit %, the EA closes all open positions managed by it and pauses trading until the next day (broker server time).

The trading week **starts on Monday 00:00 (broker server time)**.

At that moment, the EA resets weekly counters and initializes the weekly reference.

* **Use balance at week start**\
  Captures the **account balance at Monday 00:00** and keeps it fixed for the entire week.
* **Use highest balance of week** \
  Tracks the **peak balance** from Monday 00:00 onward; updates the reference whenever a new high is reached (more protective).

{% hint style="info" %}

### When to use each option

**Balance at week start**

* **Pros:** Predictable weekly risk budget; simple to audit/backtest.
* **Best for:** Systems with steady P/L; prop rules measured versus week-start balance.

**Highest balance of week**

* **Pros:** **Locks in weekly gains**—drawdown measured from the top.
* **Best for:** Strategies that want to protect accumulated profits after strong early-week performance.
  {% endhint %}

{% hint style="warning" %}

### Why not / trade-offs

* **Balance-based ≠ equity-based:** large unrealized losses won’t count until closed.
* **Highest-of-week** can trigger after normal pullbacks post-profit.
* Forced exits can miss recoveries; not a substitute for per-trade risk control or position sizing.
  {% endhint %}

{% hint style="info" %}

### Examples

* **Weekly Loss Limit % = 10; Reference = Week-start balance 10,000** → trigger at **9,000** balance.
* **Weekly Loss Limit % = 8; Reference = Highest balance of week 12,500** → trigger at **11,500** balance.
  {% 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/reference-for-weekly-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.
