> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/insights-and-predictive-analytics/token-vesting-schedule-impact-models.md).

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