# Token Vesting Schedule Impact Models

**Implementation Details**

**Class Names**

| Model Name               | Parameters Class        | Data Class             |
| ------------------------ | ----------------------- | ---------------------- |
| TokenVestingImpactModels | TokenVestingQueryParams | TokenVestingImpactData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.token_vesting_schedule_impact_models import (
    TokenVestingImpactModels,
    TokenVestingQueryParams,
    TokenVestingImpactData,
)
```

***

**Parameters**

| Name                    | Type                    | Description                                            | Default | Optional |
| ----------------------- | ----------------------- | ------------------------------------------------------ | ------- | -------- |
| token\_symbol           | Union\[str, List\[str]] | Token(s) with vesting schedules to analyze.            | None    | False    |
| include\_locked\_tokens | bool                    | Include analysis of tokens still under lock-up.        | True    | True     |
| time\_horizon           | int                     | Time window (in days) for forecasting vesting impacts. | 30      | True     |

***

**Data**

| Name                    | Type     | Description                                   |
| ----------------------- | -------- | --------------------------------------------- |
| token\_symbol           | str      | Symbol of the token analyzed.                 |
| total\_vested\_tokens   | float    | Total number of tokens scheduled for release. |
| price\_impact\_forecast | float    | Projected price impact due to token release.  |
| vesting\_schedule       | dict     | Details of the vesting timeline and amounts.  |
| timestamp               | datetime | Timestamp of the analysis.                    |

***

**Key Features**

* **Price Impact Simulations:** Predicts how upcoming vesting releases may affect token price.
* **Timeline Visualization:** Generates visual schedules of token releases over time.
* **Risk Assessment:** Identifies high-risk periods when significant token unlocks occur.


---

# 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/token-vesting-schedule-impact-models.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.
