Moving Average Calculator
Calculate various types of moving averages (SMA, EMA, WMA, TMA) with trend analysis and trading signals
API Documentation
Request Endpoint
POST /en/api/tools/moving-average-calculator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| dataInput | textarea | Yes | - |
| dataFormat | select | Yes | - |
| movingAverageTypes | text | No | Comma-separated types. Available: SMA (Simple), EMA (Exponential), WMA (Weighted), TMA (Triangular) |
| period | number | No | Number of periods for moving average calculation (2-100) |
| smoothingFactor | number | No | Smoothing factor for EMA calculation (0.01-0.99). Calculated as 2/(period+1) if not specified |
| includeTrendAnalysis | checkbox | No | Analyze trends and identify crossovers |
| includeSignals | checkbox | No | Generate buy/sell signals based on moving average crossovers |
| includeComparison | checkbox | No | Show original data alongside moving averages |
| decimalPlaces | number | No | Number of decimal places in results (0-8) |
| dateFormat | select | Yes | - |
Response Format
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
Text:
Text
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-moving-average-calculator": {
"name": "moving-average-calculator",
"description": "Calculate various types of moving averages (SMA, EMA, WMA, TMA) with trend analysis and trading signals",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=moving-average-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]