kama
Calculate Kaufman adaptive moving average for stock analysis using symbol, interval, and time period parameters to identify market trends.
Instructions
Fetch Kaufman adaptive moving average
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | ||
| interval | No | ||
| month | No | ||
| time_period | No | ||
| series_type | No | ||
| 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"
}
},
"type": "object"
}