stochrsi
Calculate the Stochastic RSI indicator to identify overbought and oversold conditions in stock prices, helping traders make informed decisions about market entry and exit points.
Instructions
Fetch stochastic relative strength index
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| time_period | Yes | ||
| series_type | Yes | ||
| 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"
},
"series_type": {
"type": "string"
},
"symbol": {
"type": "string"
},
"time_period": {
"type": "number"
}
},
"required": [
"symbol",
"interval",
"time_period",
"series_type"
],
"type": "object"
}