Financial Modeling Prep

getDEMA

Calculate the Double Exponential Moving Average (DEMA) for a stock using the FMP DEMA API. This tool helps users analyze trends and identify potential buy or sell signals based on historical price data.

Remote cfocoder/financial-modeling-prep-mcp-server

Other tools also called getDEMA? 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"
    }
  }
}