ultosc
Calculate the Ultimate Oscillator technical indicator for stocks to identify potential buy and sell signals by analyzing price momentum across multiple time periods.
Instructions
Fetch ultimate oscillator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| timeperiod1 | Yes | ||
| timeperiod2 | Yes | ||
| timeperiod3 | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
},
"timeperiod1": {
"type": "number"
},
"timeperiod2": {
"type": "number"
},
"timeperiod3": {
"type": "number"
}
},
"required": [
"symbol",
"interval",
"timeperiod1",
"timeperiod2",
"timeperiod3"
],
"type": "object"
}