get_news_by_sentiment
Filter news articles by sentiment to analyze market trends and relationships in the Spanish stock exchange.
Instructions
Get news articles filtered by sentiment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of articles | |
sentiment | Yes | News sentiment |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of articles",
"type": "number"
},
"sentiment": {
"description": "News sentiment",
"enum": [
"positive",
"negative",
"neutral"
],
"type": "string"
}
},
"required": [
"sentiment"
],
"type": "object"
}