---
title: stoch_rsi (Stoch RSI)
description: Momentum indicator. Standard math aligned with TradingView Pine Script.
---

# `stoch_rsi` — Stoch RSI

> Category: **Momentum** · Standard

::: tip For Skill / AI Agent integrations
When you `POST /api/indicators?explain=true`, the response carries a `knowledge` block with this indicator's interpretation rubric. **Pass it to your LLM together with the numeric data** — don't make the LLM guess thresholds from memory. Full rubric lives at the [Chinese page](https://docs.mobiusquant.ai/zh/indicators/stoch_rsi) (summary_focus / signals / caveats).
:::

This is a momentum indicator.
Math is aligned with TradingView Pine Script.

## Parameters

| Parameter | Type | Default |
|------|------|--------|
| `length_rsi` | int | `14` |
| `length_stoch` | int | `14` |
| `smooth_k` | int | `3` |
| `smooth_d` | int | `3` |

## Output columns

| Column |
|------|
| `stoch_rsi_d` |
| `stoch_rsi_k` |

## Example call

```bash
curl -X POST -H "Authorization: Bearer mq_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "exchange": "binance",
    "market":   "perp",
    "symbol":   "BTCUSDT",
    "interval": "5m",
    "limit":    100,
    "calc":     [{"name": "stoch_rsi", "params": {"length_rsi": 14, "length_stoch": 14, "smooth_k": 3, "smooth_d": 3}}]
  }' \
  https://api.mobiusquant.ai/api/indicators
```

## Full interpretation guide

The full description, signal interpretation, caveats and analysis focus points are
documented in Chinese at:

[stoch_rsi (中文详情)](https://docs.mobiusquant.ai/zh/indicators/stoch_rsi)

## Related indicators

[accelerator_oscillator](./accelerator_oscillator) · [awesome_oscillator](./awesome_oscillator) · [cci](./cci) · [chande_mo](./chande_mo) · [connors_rsi](./connors_rsi) · [coppock_curve](./coppock_curve) · [dpo](./dpo) · [kst](./kst)

---

_Auto-generated by `scripts/sync-indicators.mjs` from `engine_indicator_knowledge` + engine runtime introspect. Manual edits will be overwritten on next sync._
