For the complete documentation index, see llms.txt. This page is also available as Markdown.

Whale Wallet Divergence Tracking

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

WhaleDivergenceTracking

WhaleDivergenceQueryParams

WhaleDivergenceData

Import Statement

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.

Last updated