connors_rsi — Connors RSI
Category: Momentum · Composite
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 (summary_focus / signals / caveats).
This is a momentum indicator. Math is aligned with TradingView Pine Script.
Parameters
| Parameter | Type | Default |
|---|---|---|
len_rsi | int | 3 |
len_updown | int | 2 |
len_roc | int | 100 |
Output columns
| Column |
|---|
crsi |
crsi_pctrank |
crsi_rsi |
crsi_updown |
Example call
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": "connors_rsi", "params": {"len_rsi": 3, "len_updown": 2, "len_roc": 100}}]
}' \
https://api.mobiusquant.ai/api/indicatorsFull interpretation guide
The full description, signal interpretation, caveats and analysis focus points are documented in Chinese at:
Related indicators
accelerator_oscillator · awesome_oscillator · cci · chande_mo · coppock_curve · dpo · kst · macd
Auto-generated by scripts/sync-indicators.mjs from engine_indicator_knowledge + engine runtime introspect. Manual edits will be overwritten on next sync.