ta_summary
Analyze crypto market trends with combined RSI and Bollinger Bands data. Input historical values and optional parameters to generate technical insights in a single call.
Instructions
Return both RSI and Bollinger in one call. Inputs: values:number[] (oldest→newest), rsiPeriod?:number(14), bbPeriod?:number(20), bbMult?:number(2).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bbMult | No | ||
bbPeriod | No | ||
rsiPeriod | No | ||
values | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bbMult": {
"type": "number"
},
"bbPeriod": {
"type": "number"
},
"rsiPeriod": {
"type": "number"
},
"values": {
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"values"
],
"type": "object"
}