technicalIndicators_adosc
Analyze stock momentum using the Chaikin A/D Oscillator to identify potential buy or sell signals based on fast and slow period settings. Specify symbol and interval for precise market analysis.
Instructions
Chaikin A/D Oscillator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Data format for the response. | json |
fastperiod | No | Fast period setting (integer). | |
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). | |
slowperiod | No | Slow period setting (integer). | |
symbol | Yes | The stock symbol (e.g., "IBM"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for indicators with fast/slow period settings.",
"properties": {
"datatype": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"fastperiod": {
"description": "Fast period setting (integer).",
"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"
},
"slowperiod": {
"description": "Slow period setting (integer).",
"type": "string"
},
"symbol": {
"description": "The stock symbol (e.g., \"IBM\").",
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}