> For the complete documentation index, see [llms.txt](https://docs.arkis.xyz/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkis.xyz/home/concepts/margin-call.md).

# Margin Call

A Margin Call is an early warning mechanism triggered when a [Margin Account's](/home/concepts/margin-account.md) [Risk Factor](/home/concepts/risk-factor.md) approaches the Liquidation Threshold, signaling that the portfolio is under stress but not yet unsafe enough to be liquidated.

It provides the [Asset Manager](/home/concepts/asset-manager.md) (Borrower) with an opportunity to restore their account health before [Liquidation](/home/concepts/liquidation.md) occurs.

### **How it Works**

1. Risk Breach Detection
   * The Margin Engine detects that the Risk Factor is nearing critical levels.
   * The Margin Call status is flagged internally in the system.
2. Notification to Asset Manager
   * Asset Managers are notified via:
     * Arkis Web Portal
     * Email
     * Real-time alerts via Arkis API (for connected trading systems)
3. Grace Period for Action
   * The Asset Manager is expected to either:
     * Top up collateral with whitelisted tokens, or
     * Reduce borrowings (i.e., repay a portion of the debt), or
     * Reduce risk by closing positions that are volatile or underperforming.
4. Monitoring
   * The Margin Engine continuously monitors whether the account’s Risk Factor improves.
   * If no action is taken and Risk Factor drops below the Liquidation Threshold, liquidation is initiated automatically.

### **Example**

* Borrowed: $10,000 USDC
* Stress-Tested Value of Portfolio: $11,200
* Risk Factor = 1.12

If:

* Margin Call Threshold = 1.15
* Liquidation Threshold = 1.00

Then:

* Margin Call is triggered.
* Asset Manager has time to adjust before the account becomes eligible for liquidation.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.arkis.xyz/home/concepts/margin-call.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
