2024-09-10 13:44:47 +00:00
# Cumulative RSI
2024-09-10 13:49:12 +00:00
This indicator simply sums up the previous n-periods (e.g., 2 days) worth of RSI values.
Credit for the idea belongs to Larry Connors in his book [*Short Term Trading Strategies That Work* ](https://moshferatu.dev/moshferatu/short-term-trading-strategies-that-work ) (2008).
2024-09-10 13:52:23 +00:00
## Parameters
**RSI Period**: The period to use in the RSI calculation. (Default: 2)
**RSI Smoothing**: The smoothing to use in the RSI calculation. (Default: 1, no smoothing)
**Cumulative Period**: The number of RSI values to add up. (Default: 2)
2024-09-10 13:55:42 +00:00
## Plots
**Cumulative RSI**: The sum total of the previous RSI values. (Default: Yellow Solid Line 3px)
2024-09-10 13:58:48 +00:00
## Screenshots
2024-09-10 16:11:38 +00:00
![Cumulative RSI ](https://static.moshington.com/images/indicators/cumulative-rsi/cumulative_rsi.png )
2024-09-10 13:58:48 +00:00
2024-09-11 13:54:18 +00:00
## Strategies
The [Cumulative RSI strategy ](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/strategies/cumulative-rsi ) is based on this indicator.
2024-09-10 13:44:47 +00:00
---