stoch
Calculate stochastic oscillator values for stocks to identify overbought or oversold conditions using price momentum analysis.
Instructions
Fetch stochastic oscillator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| fastkperiod | No | ||
| slowkperiod | No | ||
| slowdperiod | No | ||
| slowkmatype | No | ||
| slowdmatype | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"fastkperiod": {
"type": "number"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"slowdmatype": {
"type": "string"
},
"slowdperiod": {
"type": "number"
},
"slowkmatype": {
"type": "string"
},
"slowkperiod": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}