# Understanding Risk Factor

Each lending position essentially consists of a **supplied** and a **borrowed** part. The ratio of the 2 determine the health of your position. Take the following example:

#### Supplied

* Asset: 1 EGLD
* Price: 15$
* Loan to Value: 75% (you can borrow up to 75%\*15$=**11.25$**)
* Liquidation Threshold: 80% (you get liquidated when your borrowed reaches 80%\*15$=**12$**)

#### Borrowed

* Asset: 350 XOXNO
* Price: 0.03$

#### Risk factor

* The risk factor is computed as&#x20;

$$
\text{risk(position)} = \frac{\text{borrowedInDollars}}{\text{liquidationCollateralInDollars}}
$$

* In above case, that would be

$$
\text{risk(position)} = \frac{\text{350 \* 0.03$}}{\text{1 \* 15$ \* 80%}} = \frac{\text{10.5$}}{\text{12$}} = 87.5%
$$

That means the position is medium risky. If the value of your collateral drops or the value of your borrowed surges in price, [Liquidation](/xoxno-ecosystem/lend-and-borrow/liquidation.md) can occur.


---

# 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://docs.xoxno.com/leverage/understanding-risk-factor.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.
