technicalIndicators_htTrendline
Analyze stock trends using the Hilbert Transform - Instantaneous Trendline method with MCP Avantage. Input stock symbol, time interval, and price type to generate trend data for informed trading decisions.
Instructions
Hilbert Transform - Instantaneous Trendline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Data format for the response. | json |
interval | Yes | Time interval (e.g., "daily", "60min", "weekly"). Check Alpha Vantage docs for valid intervals per indicator. | |
month | No | Specific month for intraday intervals (YYYY-MM format). | |
series_type | Yes | The desired price type. | |
symbol | Yes | The stock symbol (e.g., "IBM"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for HT_TRENDLINE.",
"properties": {
"datatype": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"interval": {
"description": "Time interval (e.g., \"daily\", \"60min\", \"weekly\"). Check Alpha Vantage docs for valid intervals per indicator.",
"type": "string"
},
"month": {
"description": "Specific month for intraday intervals (YYYY-MM format).",
"type": "string"
},
"series_type": {
"description": "The desired price type.",
"enum": [
"close",
"open",
"high",
"low"
],
"type": "string"
},
"symbol": {
"description": "The stock symbol (e.g., \"IBM\").",
"type": "string"
}
},
"required": [
"symbol",
"interval",
"series_type"
],
"type": "object"
}