dema
Calculate double exponential moving average for stock analysis using symbol, interval, time period, and series type parameters to identify trend direction and momentum.
Instructions
Fetch double exponential moving average
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| time_period | Yes | ||
| series_type | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"series_type": {
"type": "string"
},
"symbol": {
"type": "string"
},
"time_period": {
"type": "number"
}
},
"required": [
"symbol",
"interval",
"time_period",
"series_type"
],
"type": "object"
}