ppo
Calculate percentage price oscillator values for stocks to identify momentum and trend changes in financial markets using technical analysis indicators.
Instructions
Fetch percentage 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"
}