From e3fe9a0fb9bdaec61d04af252f5f236054e40472 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 8 Jan 2025 12:53:06 -0800 Subject: [PATCH] Remove RSI smoothing parameters from ConnorsRSI indicator documentation --- indicators/connors-rsi/README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/indicators/connors-rsi/README.md b/indicators/connors-rsi/README.md index 60b4850..7215519 100644 --- a/indicators/connors-rsi/README.md +++ b/indicators/connors-rsi/README.md @@ -24,22 +24,14 @@ If there is no change in price, the streak is set to 0. The third and final component is a percent rank computed on the Close price. -The indicator parameters default to the values used in the above formula. - -The only additional parameters introduced in this implementation are for smoothing the RSI calculations, though they both default to 1 (i.e., no smoothing). - ## Parameters ![ConnorsRSI Parameters](./connors_rsi_parameters.png) **RSI Period**: The period used in the first component RSI calculation. (Default: 3) -**RSI Smoothing** The smoothing period used in the first component RSI calculation. (Default: 1) - **Streak RSI Period**: The period used in the second component RSI calculation. (Default 2) -**Streak RSI Smoothing**: The smoothing period used in the second component RSI calculation. (Default: 1) - **Percent Rank Period**: The period over which to rank prices in the percent rank calculation. (Default: 100) ## Strategies