> For the complete documentation index, see [llms.txt](https://betoken.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://betoken.gitbook.io/docs/manage-the-fund/how-does-risk-threshold-work.md).

# 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.
