mama
Calculate MESA adaptive moving average to identify stock price trends and generate technical trading signals for market analysis.
Instructions
Fetch MESA adaptive moving average
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| series_type | Yes | ||
| fastlimit | Yes | ||
| slowlimit | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"fastlimit": {
"type": "number"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"series_type": {
"type": "string"
},
"slowlimit": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval",
"series_type",
"fastlimit",
"slowlimit"
],
"type": "object"
}