apo
Calculate the Absolute Price Oscillator (APO) for stocks to identify momentum trends and generate technical trading signals using specified fast and slow period parameters.
Instructions
Fetch absolute price oscillator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| series_type | Yes | ||
| fastperiod | Yes | ||
| slowperiod | Yes | ||
| matype | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"fastperiod": {
"type": "number"
},
"interval": {
"type": "string"
},
"matype": {
"type": "string"
},
"month": {
"type": "string"
},
"series_type": {
"type": "string"
},
"slowperiod": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval",
"series_type",
"fastperiod",
"slowperiod"
],
"type": "object"
}