# Core Terms

## **Lending Formula**

### **Loan-to-Value (LTV) Ratio**

The core formula used in the protocol is the **Loan-to-Value (LTV)** ratio. The LTV ratio determines how much a borrower can borrow against their collateral. In this protocol, the LTV is capped at **80%**.

### **LTV Formula:**

{% hint style="info" %}
LTV = Loan Amount / (Total Collateral Value \* 80)
{% endhint %}

Where:

* **Loan Amount** is the amount borrowed.
* **Total Collateral Value** is the sum of the values of the assets deposited as collateral.

For example, if a borrower deposits $10,000 worth of ETH and DAI, they can borrow up to **$8,000** (80% of $10,000).

***

### **Health Factor (HF)**:

The health factor is a critical aspect of the protocol’s risk management. It is used to determine whether a borrower’s collateral is still sufficient to cover their loan. The health factor is calculated as:

{% hint style="info" %}
HF = (Collateral Value \* LTV) / Loan Amount
{% endhint %}

* If **HF > 1**, the loan is safe.
* If **HF < 1**, the loan is under-collateralized and eligible for liquidation.

***

### **Liquidation Threshold**:

To prevent abrupt liquidation, a buffer is set in place. The liquidation threshold is **85% LTV**, meaning if the LTV ratio of a loan exceeds 85%, liquidatoin 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.lendbit.finance/core-terms.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.
