> For the complete documentation index, see [llms.txt](https://docs.equilibrium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.equilibrium.io/under-the-hood/interest-rate-model.md).

# Interest rates model

## Pricing&#x20;

The problem of pricing a collateralised loan comes from the realms of traditional finance and stock loans. Associated research on this was pioneered by [Xia and Zhou (2007)](https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1467-9965.2006.00305.x). Under the Black–Scholes model, they derived a closed-form pricing formula for the infinite-maturity stock loan by solving the related optimal stopping problem. \
\
Equilibrium adapts the approach proposed by Xia and Zhou, and comes up with an elegant pricing solution that depends on borrower portfolio risk and the level of portfolio collateralization.&#x20;

$$
Interest\ rate \approx Leverage \* (Portfolio\ volatility \* Scale\  factor)
$$

The interest that borrowers pay gets redistributed across the system components. The following breakdown applies:&#x20;

| Interest rate component | Value                        |
| ----------------------- | ---------------------------- |
| Base Lender Rate        | 0.5% APR                     |
| Base Insurance Rate     | 1.0% APR                     |
| Base Treasury Rate      | 1.0% APR                     |
| Primary Borrower Rate   | \~ Leverage \* Volatility    |
| Lender share            | 30% of Primary Borrower Rate |
| Bailsman share          | 70% of Primary Borrower Rate |

So the minimum possible interest rate borrowers pay is 2.5% APR, while the biggest contributor to the final interest rate figure is the Primary Borrower Rate which depends on the leverage the borrower undertakes and the risk (volatility) of the borrower portfolio. 30% of the Primary Borrower Rate is funnelled to lenders, while 70% is funnelled to insurers (bailsmen).&#x20;

The base treasury rate is split among treasury and collators in a 50 / 50 proportion, so collators earn a 0.5% APR on top of their trx. fees rewards. \
\
Assuming the default values for risk parameters, here's the approximate interest rate breakdown (how much borrowers pay to bailsmen and lenders respectively) for a borrower portfolio, given its leverage and volatility.&#x20;

<figure><img src="/files/ZSYnC3zgmE97cSlpStUi" alt=""><figcaption><p>How much borrower pays to bailsmen and lenders given the leverage and portfolio risk (volatility)</p></figcaption></figure>

Further improvements to the pricing model may include adapting the jump diffusion process to model the collateral risk, as well as adapting the model to account for margin calls and LTV requirements. This is subject of our ongoing R\&D work.&#x20;

&#x20;<br>


---

# 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.equilibrium.io/under-the-hood/interest-rate-model.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.
