From 554b6409a4db252e0e54adbc395dde49c350ae1c Mon Sep 17 00:00:00 2001 From: Dave Skender <8432125+DaveSkender@users.noreply.github.com> Date: Sat, 2 Nov 2024 21:23:12 -0400 Subject: [PATCH] docs: Fix typo in Renko docs (#1268) --- docs/_indicators/Renko.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_indicators/Renko.md b/docs/_indicators/Renko.md index c7ede7e65..0ffa4821b 100644 --- a/docs/_indicators/Renko.md +++ b/docs/_indicators/Renko.md @@ -117,7 +117,8 @@ IEnumerable ``` - This method returns a time series of all available indicator values for the `quotes` provided. -- It always returns the same number of elements as there are in the historical quotes. - It does not return a single incremental indicator value. +> 🚩 **Warning**: Unlike most indicators in this library, this indicator DOES NOT return the same number of elements as there are in the historical quotes. Renko bricks are added to the results once the `brickSize` change is achieved. For example, if it takes 3 days for a $2.50 price change to occur an entry is made on the third day while the first two are skipped. If a period change occurs at multiples of `brickSize`, multiple bricks are drawn with the same `Date`. See [online documentation](https://www.investopedia.com/terms/r/renkochart.asp) for more information. + > 👉 **Repaint warning**: When using the `GetRenkoAtr()` variant, the last [Average True Range (ATR)]({{site.baseurl}}/indicators/Atr/#content) value is used to set `brickSize`. Since the ATR changes over time, historical bricks will be repainted as new periods are added or updated in `quotes`.