aroon
Calculate Aroon indicator values to identify trend direction and strength in stock market analysis using price data for technical trading decisions.
Instructions
Fetch aroon
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| time_period | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
},
"time_period": {
"type": "number"
}
},
"required": [
"symbol",
"interval",
"time_period"
],
"type": "object"
}