# Risk Threshold

To handle Managers who don't make any trades but still redeem their commissions every Cycle, there is a Risk Threshold implemented which disincentivizes managers from just sitting on the fence, blocking capital and redeeming their commissions.&#x20;

This 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. **If an Asset Manager doesn't make any trade at all he won't get any rewards as his / her Risk = 0.**

### Risk 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 = ReputationToken BalanceAtCycleStart \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 Steven has 100 Reputation Token and Simon has 10 Reputation Token.&#x20;

Steven stakes 50 Reputation Token in a Trade for 7 days, Simon stakes 1 Reputation Token in a Trade for 15 days and 2 Reputation Token in another Trade for 5 days.&#x20;

**The risk Steven has taken is:**

$$
$50\times7=350$
$$

and his risk threshold is:&#x20;

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

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

**The risk Simon 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://documents.peakdefi.com/for-asset-managers/how-to-for-asset-managers.../risk-threshold.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.
