sar
Fetch Parabolic SAR technical indicator data for stock analysis to identify potential trend reversals and generate buy/sell signals.
Instructions
Fetch parabolic sar
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| acceleration | No | ||
| maximum | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"acceleration": {
"type": "number"
},
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"maximum": {
"type": "number"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}