# High-Frequency Trading Volume Tracking

**Implementation Details**

**Class Names**

| Model Name                         | Parameters Class     | Data Class    |
| ---------------------------------- | -------------------- | ------------- |
| HighFrequencyTradingVolumeTracking | HFTVolumeQueryParams | HFTVolumeData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.high_frequency_trading_volume_tracking import (
    HighFrequencyTradingVolumeTracking,
    HFTVolumeQueryParams,
    HFTVolumeData,
)
```

***

**Parameters**

| Name             | Type                    | Description                                              | Default | Optional |
| ---------------- | ----------------------- | -------------------------------------------------------- | ------- | -------- |
| blockchain\_name | str                     | Blockchain to track for high-frequency trading activity. | None    | False    |
| asset\_symbol    | Union\[str, List\[str]] | Asset(s) to monitor for HFT activity.                    | None    | False    |
| time\_horizon    | int                     | Time window (in minutes) for tracking trading volumes.   | 60      | True     |

***

**Data**

| Name                        | Type     | Description                                  |
| --------------------------- | -------- | -------------------------------------------- |
| blockchain\_name            | str      | Blockchain analyzed for HFT activity.        |
| asset\_symbol               | str      | Symbol of the asset being monitored.         |
| total\_hft\_volume          | float    | Total trading volume attributed to HFT.      |
| hft\_activity\_distribution | dict     | Breakdown of HFT activity by time or trader. |
| timestamp                   | datetime | Timestamp of the volume tracking analysis.   |

***

**Key Features**

* **HFT Volume Analysis:** Tracks trading volumes driven by high-frequency trading activity.
* **Asset-Specific Insights:** Focused tracking for specific tokens or assets.
* **Distribution Patterns:** Identifies patterns in trading volume across time intervals.


---

# 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/high-frequency-trading-volume-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.
