# Block-by-Block Tracking

Block-by-Block Tracking is used in the Battle of the Pools and evaluates token performance by calculating price changes for every block during the battle and awarding points based on those changes.

### **How It Works:**

1. The price of each token is tracked at every block.
2. The percentage change in price from the previous block is calculated.
3. Points are awarded for each block based on these changes:
   * Change in the chosen direction earns points.
   * Change in the opposite direction earns **negative** points.
   * No change earns zero points.
4. At the end of the battle, the token with the highest cumulative points wins.

#### **Example:**

Let’s assume **Player A** chooses Token X <mark style="color:green;">UP</mark>, and **Player B** chooses Token Y <mark style="color:red;">DOWN</mark>.

| Block | Token X Price | Change (%)  | Player A Points | Token Y Price | Change (%)  | Player B Points |
| ----- | ------------- | ----------- | --------------- | ------------- | ----------- | --------------- |
| 1     | 105           | +5%         | +5              | 95            | -5%         | +5              |
| 2     | 103           | -2%         | -2              | 98            | +3%         | -3              |
| 3     | 108           | +5%         | +5              | 90            | -8%         | +8              |
| 4     | 110           | +2%         | +2              | 110           | -22%        | +22             |
| Total | <p><br></p>   | <p><br></p> | +10 Points      | <p><br></p>   | <p><br></p> | +32 Points      |

Result: **Player B** wins with 32 points.

#### **Where to View Results:**

The results of Block-by-Block Tracking are visualized in a chart in the results section of the app. This chart shows the price changes for each token block by block.

***

<br>

### 4. Frequently Asked Questions (FAQ)

#### **1. What happens if my token moves in both directions during the battle?**

Both movements contribute to the score. Price change in the selected direction contributes points (+8 for 8% change), while change in the opposite direction deduces points (-13 for 13% change).

#### 2. Can I view the exact points earned for each block?

Yes, the block-by-block breakdown is visualized in the results chart.

<br>


---

# 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://docs.wingriders.com/battle-of-pools/block-by-block-tracking.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.
