New indicator:
- [Renko Chart](https://daveskender.github.io/Stock.Indicators/indicators/Renko/#content) / Price Transform (preview) - 479
New utilities for indicator results:
- [RemoveWarmupPeriods()](https://daveskender.github.io/Stock.Indicators/docs/UTILITIES.html#remove-warmup-periods) will remove the recommended or specific quantities of warmup periods from indicator results. - 470
- [ConvertToQuotes()](https://daveskender.github.io/Stock.Indicators/docs/UTILITIES.html#convert-to-quotes) makes it easier to do indicator of indicators - 475
csharp
// example: an RSI of Renko bricks
IEnumerable<RsiResult> results
= quotes.GetRenko(..)
.ConvertToQuotes()
.GetRsi(14);
Breaking changes:
- Double and Triple EMA result classes were renamed from `EmaResult` to `DemaResult` and `TemaResult`, respectively. Also, property `Ema` was renamed to `Dema` and `Tema`, respectively.
- Rolling Pivots result class was renamed from `PivotPointsResult` to `RollingPivotsResult` to make it uniquely different from normal Pivot Point results.
- enum `ZigZagType` was renamed to `EndType` for reuse
- `BadHistoryException` was renamed to `BadQuotesException` - this will impact anyone catching this exception
- misc internal Pivot Point calculations were made private
- interface `IResultBase` was renamed to `IResult`
- numerous parameters were renamed, though this may not impact anyone
Chores (internals):
- update naming conventions, for example, we're using `quotes` instead of `history` to represent the historical quote collections.
Special thanks to:
- vishalsmart for recommending Renko Charts