# How does risk threshold work?

While Betoken's [Incentivized Meritocracy](https://github.com/Betoken/Whitepaper/blob/master/BetokenWhitepaper.md#introduction) can already deal with managers who don't make any investments but still redeem their [commissions](/docs/manage-the-fund/how-does-the-managers-monthly-commission-work.md) every month (AKA freeloaders), it does so too slowly to disincentivize managers from freeloading. Thus, we have introduced a mechanism we call Risk Threshold to better handle freeloaders.

The Risk Threshold mechanism measures the amount of risk each manager has taken in a cycle, and only gives them the full commission amount if the risk they've taken exceeds a certain threshold.

### Formula

We measure the risk a manager has taken using the formula:&#x20;

$$
Risk = \sum\_{i\in Investments} Duration(i) \times Stake(i)
$$

&#x20;And the threshold we have chosen for each manager is: &#x20;

$$
Threshold = KairoBalanceAtCycleStart \times (3 \text{ days})
$$

The proportion of the full commission that each manager will receive is:&#x20;

$$
min(1, \frac{Risk}{Threshold})
$$

### Example

Say at the beginning of a cycle Alice has 100 Kairo and Bob has 10 Kairo.&#x20;

Alice stakes 50 Kairo in an investment for 7 days, Bob stakes 1 Kairo in an investment for 15 days and 2 Kairo in another investment for 5 days.&#x20;

**The risk Alice has taken is:**

$$
$50\times7=350$
$$

and her risk threshold is:&#x20;

$$
$100 \times 3 = 300$
$$

so she will receive the full commission amount.&#x20;

**The risk Bob has taken is:**&#x20;

$$
$1 \times 15 + 2 \times 5 = 25$
$$

and his risk threshold is:&#x20;

$$
$10 \times 3 = 30$
$$

&#x20;so he has not exceeded the risk threshold, and will receive&#x20;

$$
$\frac{25}{30} = 83.33%$
$$

83.33% of the full commission amount.


---

# 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://betoken.gitbook.io/docs/manage-the-fund/how-does-risk-threshold-work.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.
