Financial Modeling Prep
getADX
Calculate the Average Directional Index (ADX) for a stock using the FMP ADX API. This tool helps users analyze trend strength and direction based on historical price data.
Remote cfocoder/financial-modeling-prep-mcp-server
Other tools also called getADX?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"from": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"symbol": {
"type": "string",
"description": "Stock symbol"
},
"timeframe": {
"type": "string",
"description": "Timeframe (1min, 5min, 15min, 30min, 1hour, 4hour, 1day)"
},
"periodLength": {
"type": "number",
"description": "Period length for the indicator"
}
}
}