# Profit Sharing

### Profit calculation and distribution

* Profits are paid out once a week and are settled only when there are no positions in the project with orders; if there are positions at the time of settlement, settlement will continue after all the projects with orders are closed.

  * Profits will be automatically settled and paid to the contract account of the person with orders every Monday00:00(UTC+8).
  * Profit calculation formula:
  * Amount to be distributed = Max\[Total realized profit of the portfolio \* profit ratio - Amount distributed - Total difference in profit ratio change, 0]
  * Total realized profit of the portfolio = SUM (the sum of realized profits and losses of all positions)
  * Total difference in profit ratio change = SUM (difference in single profit ratio change)
  * Single profit ratio change difference = (Amount distributed at the time of change + Total difference in profit ratio change at this time) \* (Profit ratio after change - Profit ratio before change) / Profit ratio before change

<table><thead><tr><th width="148.1171875">Total Profit</th><th width="180.73828125">Profit Sharing Ratio</th><th width="189.58203125">Distributed Profit Amount</th><th width="240.5703125">Single Profit Sharing Ratio Adjustment Difference</th><th>Total Profit Sharing Ratio Adjustment Difference</th><th>Pending Distribution Amount</th></tr></thead><tbody><tr><td>+100</td><td>10%</td><td>0</td><td>--</td><td>0</td><td>100*10%=10, max(0,10)=10</td></tr><tr><td>+200</td><td>10%</td><td>10</td><td>--</td><td>0</td><td>200*10% -10=10, max(0,10)=10</td></tr><tr><td>--</td><td>20%</td><td>20</td><td>20*(20%-10%)/10%=20</td><td>20</td><td>--</td></tr><tr><td>+300</td><td>20%</td><td>20</td><td>--</td><td>20</td><td>300*20%-20-20=20, max(0,20)=20</td></tr><tr><td>+400</td><td>20%</td><td>40</td><td>--</td><td>20</td><td>400*20%-40-20=20, max(0,20)=20</td></tr><tr><td>--</td><td>30%</td><td>60</td><td>(60+20)*(30%-20%)/20%=40</td><td>60</td><td>--</td></tr><tr><td>+500</td><td>30%</td><td>60</td><td>--</td><td>60</td><td>500*30%-60-60=30, max(0,10)=30</td></tr><tr><td>+400</td><td>30%</td><td>90</td><td>--</td><td>60</td><td>400*30%-60-90=-30, max(0,-30)=0</td></tr><tr><td>--</td><td>20%</td><td>90</td><td>(90+60)*(20%-30%)/30%=-50</td><td>10</td><td>--</td></tr><tr><td>+600</td><td>20%</td><td>90</td><td>--</td><td>10</td><td>600*20%-90-10=20, max(0,20)=20</td></tr></tbody></table>

* In addition to the weekly scheduled settlement, profit distribution will also be carried out in the following situations:
  * &#x20; \- The following user stops following orders;  - The leading user ends the investment portfolio.

### How to check profit sharing

In My Orders-Pending Profits and Historical Profits, you can view the next settlement profit and historical distributed profit


---

# 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://futuresdoc.gitbook.io/help-center/perpetual/functions/futures-copy/profit-sharing.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.
