technicalIndicators_obv
Calculate On Balance Volume (OBV) for a stock using symbol and interval inputs on the MCP Avantage server. Analyze price and volume trends to assess market momentum.
Instructions
On Balance Volume (OBV)
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). | |
symbol | Yes | The stock symbol (e.g., "IBM"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Common parameters for many technical indicators.",
"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"
},
"symbol": {
"description": "The stock symbol (e.g., \"IBM\").",
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}