get_indicator_bollinger_bands
Calculate Bollinger Bands to measure volatility and identify overbought/oversold conditions for SOL, ETH, or BTC perpetual futures trading on Jupiter.
Instructions
Calculate Bollinger Bands - measures volatility and identifies overbought/oversold conditions. Returns upper band, middle (SMA), and lower band. Price touching upper band suggests overbought, lower band suggests oversold. Common settings: (20,2) standard, (20,1.5) tight, (20,2.5) wide.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset | Yes | The asset symbol | |
| interval | Yes | Candle interval/timeframe | |
| period | Yes | Period for middle band SMA (5-50). Common: 20 | |
| std_dev | Yes | Standard deviation multiplier (0.5-4.0). Common: 1.5 (tight), 2.0 (standard), 2.5 (wide) | |
| limit | Yes | Number of data points to return (10-500). Use 10-20 for quick checks, 50-100 for recent trend, 200+ for historical analysis. |