> For the complete documentation index, see [llms.txt](https://docs.trade.polynomial.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.trade.polynomial.fi/campaign-ended/trading-season-1/xp-calculation.md).

# XP Calculation

On Trading Season, XP plays a crucial role. It's important to understand how compute it to increase your Level.

**Key factor** to compute XP:

* $1 standard volume ⇒ **1 XP**
* $1 advanced order volume ⇒ **2 XP**
* $1 Profit ⇒ **+** **1 XP** (on profit alone)

#### Open position XP

$$if$$     $$Standard$$ $$Order$$          $$XP= tradeVolumeInUSD$$

$$if$$     $$Advanced$$ $$Order$$         $$XP= limitOrderVolumeInUSD \* 2$$

#### Close position XP

$$if$$     $$Standard$$ $$Order$$          $$XP= tradeVolumeInUSD + max(Pnl, 0)$$

$$if$$     $$Advanced$$ $$Order$$         $$XP= limitOrderVolumeInUSD \* 2 + max(Pnl, 0)$$

### LONG Cases

*The cases reported shows XP acquired if trades are completely done (open & close) with Standard or Advanced order.*

**Profit**

<table><thead><tr><th width="162.33333333333331"></th><th width="90">Size</th><th width="217">Standard Order XP</th><th>Advanced Order XP</th></tr></thead><tbody><tr><td>Open</td><td>$1.000</td><td>1.000 XP</td><td>2.000 XP = $1.000 * 2XP</td></tr><tr><td>Close</td><td>$1.100 </td><td>1.100 XP</td><td>2.200 XP = $1.100 * 2XP</td></tr><tr><td>Profit</td><td>$100</td><td>100 XP</td><td>100 XP</td></tr><tr><td><strong>Total XP</strong></td><td></td><td><strong>2.200 XP</strong></td><td><strong>4.300 XP</strong></td></tr></tbody></table>

**Loss**

<table><thead><tr><th width="161.33333333333331"></th><th width="91">Size</th><th width="214">Standard Order XP</th><th>Advanced Order XP</th></tr></thead><tbody><tr><td>Open</td><td>$1.000</td><td>1.000 XP</td><td>2.000 XP = $1.000 * 2XP</td></tr><tr><td>Close</td><td>$900 </td><td>900 XP</td><td>1.800 XP = $900 * 2XP</td></tr><tr><td>Loss</td><td>$100</td><td>0 XP</td><td>0 XP </td></tr><tr><td><strong>Total XP</strong></td><td></td><td><strong>1.900 XP</strong></td><td><strong>3.800 XP</strong></td></tr></tbody></table>

### SHORT Cases

*The cases reported shows XP acquired if trades are completely done (open & close) with Standard or Advanced order.*

**Profit**&#x20;

<table><thead><tr><th width="159.33333333333331"></th><th width="93">Size</th><th width="218">Standard Order XP</th><th>Advanced Order XP</th></tr></thead><tbody><tr><td>Open</td><td>$1.000</td><td>1.000 XP</td><td>2.000 XP = $1.000 * 2XP</td></tr><tr><td>Close</td><td>$900 </td><td>900 XP</td><td>1.800 XP = $900 * 2XP</td></tr><tr><td>Profit</td><td>$100</td><td>100 XP</td><td>100 XP</td></tr><tr><td><strong>Total XP</strong></td><td></td><td><strong>2.000 XP</strong></td><td><strong>3.900 XP</strong></td></tr></tbody></table>

**Loss**&#x20;

<table><thead><tr><th width="159.33333333333331"></th><th width="97">Size</th><th width="217">Standard Order XP</th><th>Advanced Order XP</th></tr></thead><tbody><tr><td>Open</td><td>$1.000</td><td>1.000 XP</td><td>2.000 XP = $1.000 * 2XP</td></tr><tr><td>Close</td><td>$1.100 </td><td>1.100 XP</td><td>2.200 XP = $1.100 * 2XP</td></tr><tr><td>Loss</td><td>$100</td><td>0 XP</td><td>0 XP</td></tr><tr><td><strong>Total XP</strong></td><td></td><td><strong>2.100 XP</strong></td><td><strong>4.200 XP</strong></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.trade.polynomial.fi/campaign-ended/trading-season-1/xp-calculation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
