> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/insights-and-predictive-analytics/whale-wallet-divergence-tracking.md).

# 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.
