# Dark Pool Blockchain Analytics

**Implementation Details**

**Class Names**

| Model Name        | Parameters Class    | Data Class   |
| ----------------- | ------------------- | ------------ |
| DarkPoolAnalytics | DarkPoolQueryParams | DarkPoolData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.dark_pool_analytics import (
    DarkPoolAnalytics,
    DarkPoolQueryParams,
    DarkPoolData,
)
```

***

**Parameters**

| Name          | Type                    | Description                                            | Default | Optional |
| ------------- | ----------------------- | ------------------------------------------------------ | ------- | -------- |
| token\_symbol | Union\[str, List\[str]] | Tokens to track in private liquidity pools.            | None    | False    |
| time\_horizon | int                     | Time period (in hours) for analyzing liquidity trends. | 24      | True     |
| pool\_type    | str                     | Type of pool to analyze (e.g., "OTC," "Private AMMs"). | None    | True     |

***

**Data**

| Name                | Type     | Description                                                   |
| ------------------- | -------- | ------------------------------------------------------------- |
| pool\_name          | str      | Name of the private liquidity pool being analyzed.            |
| liquidity\_depth    | float    | Estimated depth of liquidity in the pool.                     |
| token\_symbol       | str      | Token being analyzed within the pool.                         |
| transaction\_volume | float    | Volume of transactions in the pool over the specified period. |
| timestamp           | datetime | Timestamp of the analysis.                                    |

***

**Key Features**

* **Hidden Liquidity Analysis:** Monitors private liquidity pools and OTC markets for trading patterns.
* **Transaction Volume Estimation:** Provides insights into hidden market activity that can impact public markets.
* **Cross-Pool Correlations:** Identifies patterns linking dark pool activity with public market trends.


---

# 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/dark-pool-blockchain-analytics.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.
