news_sentiment
Analyze market sentiment by fetching news data for specific stock tickers to identify trends and investor sentiment patterns.
Instructions
Fetch news sentiment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tickers | Yes | ||
| topics | No | ||
| time_from | No | ||
| time_to | No | ||
| sort | No | ||
| limit | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"limit": {
"type": "number"
},
"sort": {
"type": "string"
},
"tickers": {
"type": "array"
},
"time_from": {
"type": "string"
},
"time_to": {
"type": "string"
},
"topics": {
"type": "string"
}
},
"required": [
"tickers"
],
"type": "object"
}