alphaIntelligence_newsSentiments
Analyze and retrieve market news sentiment and data for specific tickers, topics, and timeframes using Alpha Vantage integration for informed financial decision-making.
Instructions
Fetches market news and sentiment data from Alpha Vantage.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to return (1-1000). | |
sort | No | Sort order for results. | LATEST |
tickersList | No | List of stock/crypto/forex symbols (e.g., ["AAPL", "GOOGL"]). | |
time_from | No | Start time for news articles (YYYYMMDDTHHMM format). | |
time_to | No | End time for news articles (YYYYMMDDTHHMM format). | |
topics | No | Specific topics to filter news for (e.g., "technology", "earnings"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for fetching market news and sentiment data.",
"properties": {
"limit": {
"default": 50,
"description": "Number of results to return (1-1000).",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"sort": {
"default": "LATEST",
"description": "Sort order for results.",
"enum": [
"LATEST",
"EARLIEST",
"RELEVANCE"
],
"type": "string"
},
"tickersList": {
"description": "List of stock/crypto/forex symbols (e.g., [\"AAPL\", \"GOOGL\"]).",
"items": {
"type": "string"
},
"type": "array"
},
"time_from": {
"description": "Start time for news articles (YYYYMMDDTHHMM format).",
"type": "string"
},
"time_to": {
"description": "End time for news articles (YYYYMMDDTHHMM format).",
"type": "string"
},
"topics": {
"description": "Specific topics to filter news for (e.g., \"technology\", \"earnings\").",
"type": "string"
}
},
"type": "object"
}