get_indicator_stochastic
Calculate Stochastic Oscillator to identify overbought/oversold conditions and momentum signals for SOL, ETH, or BTC perpetual futures trading on Jupiter.
Instructions
Calculate Stochastic Oscillator - a momentum indicator comparing closing price to price range. Returns %K and %D lines. Values above 80 indicate overbought, below 20 indicate oversold. %K crossing above %D is bullish signal. Common settings: (14,3) standard, (5,3) fast, (21,7) slow.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset | Yes | The asset symbol | |
| interval | Yes | Candle interval/timeframe | |
| k_period | Yes | %K period (3-30). Common: 5 (fast), 14 (standard), 21 (slow) | |
| d_period | Yes | %D period (2-10). Common: 3 | |
| 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. |