stochf
Calculate the stochastic oscillator fast to identify overbought and oversold conditions for stock analysis using price momentum indicators.
Instructions
Fetch stochastic oscillator fast
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| fastkperiod | No | ||
| fastdperiod | No | ||
| fastdmatype | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"fastdmatype": {
"type": "string"
},
"fastdperiod": {
"type": "number"
},
"fastkperiod": {
"type": "number"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}