# High-Frequency Trader Detection

**Implementation Details**

**Class Names**

| Model Name                   | Parameters Class               | Data Class              |
| ---------------------------- | ------------------------------ | ----------------------- |
| HighFrequencyTraderDetection | HighFrequencyTraderQueryParams | HighFrequencyTraderData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.high_frequency_trader_detection import (
    HighFrequencyTraderDetection,
    HighFrequencyTraderQueryParams,
    HighFrequencyTraderData,
)
```

***

**Parameters**

| Name                        | Type | Description                                                    | Default | Optional |
| --------------------------- | ---- | -------------------------------------------------------------- | ------- | -------- |
| blockchain\_name            | str  | Blockchain to monitor for high-frequency trading activity.     | None    | False    |
| time\_window                | int  | Time window (in minutes) to detect trading patterns.           | 60      | True     |
| trade\_frequency\_threshold | int  | Minimum number of trades per minute to flag as high-frequency. | 10      | True     |

***

**Data**

| Name                | Type     | Description                                                              |
| ------------------- | -------- | ------------------------------------------------------------------------ |
| trader\_id          | str      | Identifier of the detected high-frequency trader (e.g., wallet address). |
| trade\_count        | int      | Number of trades executed in the specified time window.                  |
| transaction\_volume | float    | Total transaction volume (in USD).                                       |
| market\_impact      | float    | Estimated market impact of the detected activity.                        |
| timestamp           | datetime | Timestamp of the detection.                                              |

***

**Key Features**

* **Real-Time Detection:** Monitors and flags high-frequency trading activity in real time.
* **Market Impact Estimation:** Quantifies how detected trading patterns influence market prices.
* **Customizable Thresholds:** Allows users to define thresholds for trade frequency and volume.


---

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