# Advanced Sentiment Dynamics

**Implementation Details**

**Class Names**

| Model Name                | Parameters Class             | Data Class            |
| ------------------------- | ---------------------------- | --------------------- |
| AdvancedSentimentDynamics | SentimentDynamicsQueryParams | SentimentDynamicsData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.advanced_sentiment_dynamics import (
    AdvancedSentimentDynamics,
    SentimentDynamicsQueryParams,
    SentimentDynamicsData,
)
```

***

**Parameters**

| Name              | Type                    | Description                                                      | Default | Optional |
| ----------------- | ----------------------- | ---------------------------------------------------------------- | ------- | -------- |
| asset\_class      | Union\[str, List\[str]] | Asset class(es) for sentiment analysis (e.g., tokens, NFTs).     | None    | False    |
| sentiment\_source | List\[str]              | Sources to include (e.g., "Social Media," "News").               | None    | True     |
| analysis\_depth   | int                     | Depth of analysis, determining granularity of sentiment scoring. | 5       | True     |

***

**Data**

| Name                  | Type         | Description                                         |
| --------------------- | ------------ | --------------------------------------------------- |
| asset\_class          | str          | Asset class being analyzed for sentiment dynamics.  |
| sentiment\_score      | float        | Overall sentiment score (range: -1 to 1).           |
| source\_contributions | dict         | Contribution of each source to the sentiment score. |
| sentiment\_trend      | List\[float] | Historical trend of sentiment scores over time.     |
| timestamp             | datetime     | Timestamp of the sentiment analysis.                |

***

**Key Features**

* **Source-Specific Sentiment Scoring:** Analyzes individual contributions from social media, news, and forums.
* **Trend Analysis:** Tracks sentiment changes over time and correlates them with market activity.
* **Asset-Specific Sentiment Mapping:** Provides granular insights into how different asset classes are perceived.


---

# 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/advanced-sentiment-dynamics.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.
