# Whale Wallet Divergence Tracking

**Implementation Details**

**Class Names**

| Model Name              | Parameters Class           | Data Class          |
| ----------------------- | -------------------------- | ------------------- |
| WhaleDivergenceTracking | WhaleDivergenceQueryParams | WhaleDivergenceData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.whale_divergence_tracking import (
    WhaleDivergenceTracking,
    WhaleDivergenceQueryParams,
    WhaleDivergenceData,
)
```

***

**Parameters**

| Name                  | Type                    | Description                                                  | Default | Optional |
| --------------------- | ----------------------- | ------------------------------------------------------------ | ------- | -------- |
| wallet\_addresses     | Union\[str, List\[str]] | List of whale wallets to monitor.                            | None    | False    |
| divergence\_threshold | float                   | Minimum percentage change in holdings to flag as divergence. | 5.0     | True     |
| time\_window          | int                     | Time window (in hours) for tracking divergence.              | 24      | True     |

***

**Data**

| Name               | Type     | Description                                               |
| ------------------ | -------- | --------------------------------------------------------- |
| wallet\_address    | str      | Address of the whale wallet analyzed.                     |
| holdings\_change   | float    | Percentage change in wallet holdings.                     |
| divergence\_status | str      | Status of divergence (e.g., "Accumulation," "Reduction"). |
| timestamp          | datetime | Timestamp of the analysis.                                |

***

**Key Features**

* **Behavioral Analysis:** Tracks shifts in whale wallet behavior, such as accumulation or sell-offs.
* **Customizable Thresholds:** Enables users to define what constitutes significant divergence.
* **Real-Time Alerts:** Sends notifications for large movements or strategic shifts in holdings.


---

# 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.satoshiterminal.io/resources/copy-of-defi-analytics/insights-and-predictive-analytics/whale-wallet-divergence-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.
