diff --git a/docs/_indicators/Renko.md b/docs/_indicators/Renko.md index adaab760..f26f1b12 100644 --- a/docs/_indicators/Renko.md +++ b/docs/_indicators/Renko.md @@ -107,9 +107,10 @@ RenkoResults[RenkoResult] - This method returns a time series of all available indicator values for the `quotes` provided. - `RenkoResults` is just a list of `RenkoResult`. -- 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`. ## Example for ATR variant