# Interest Rate Model

{% hint style="info" %}
Automating lending operations while maintaining a certain level of liquidity requires an efficient Interest Rate Model that balances supply and demand around an optimal level of utilization.
{% endhint %}

For each Lending Pool, let's define, at time t, the Utilization Rate $$U$$:&#x20;

$$
U\_t = \frac{B\_t}{S\_t}
$$

​where $$B\_t$$​ is the total Borrow Balance of Token A, and $$S\_t$$​ is the total Supply Balance of Token A.&#x20;

* When $$U$$​ is low, it means that most of the deposits are sitting in the reserve. They are easily accessible for immediate withdrawal but generate low interest for lenders.
* When $$U$$​ is high, it means that most of the deposits have been lent. They generate high interest for lenders but very little liquidity is available for immediate withdrawal.&#x20;

Let's define $$U^*$$​as the optimal level of utilization for lenders. The Interest Rate Model's objective is to find the optimal borrowing rate $$r^*$$​ for which $$U = U^\*$$.&#x20;

* If $$U$$ settles below $$U^\*$$ , we can assume that the interest rate is not attractive enough for borrowers and needs to be decreased.
* If $$U$$​ settles above $$U^\*$$​, we can assume that $$r$$ is too attractive for borrowers and needs to be increased.&#x20;

**Securd** has implemented an innovative interest rate model that allows a better convergence towards optimal utilization levels as well as a better adaptation to evolving Supply & Demand. Extensive details will be published soon.


---

# 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.securd.org/documentation/securd-models/interest-rate-model.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.
