Skip to content

Releases: DaveSkender/Stock.Indicators

1.9.2

20 Nov 02:37
e0cd978
Compare
Choose a tag to compare

Bug fixed:

  • ZigZag UnhandledException with small data sets - #632

Special thanks to:

  • @Fredrik-C for reporting and providing clear information and historical quote data to reproduce the error.

1.19.1

15 Nov 03:40
0caa504
Compare
Choose a tag to compare

Minor indicator updates:

Minor bugs fixed:

  • improper lines when ZigZag has not met the threshold - #618
  • special exception to Parabolic SAR values during reversal - #620

Special thanks to:

  • @kokazani for encouraging added KDJ customization
  • @Salardx for providing data for ZigZag that uncovered an unusual error case
  • @overstartup for recommending initialFactor for Parabolic SAR

1.19.0

10 Nov 07:02
e01d071
Compare
Choose a tag to compare

Modified indicators:

Modify supported frameworks:

  • add .NET 6.0
  • remove .NET Framework 4.6.1

Chores:

Special thanks to:

1.18.0

11 Oct 00:56
9e819ee
Compare
Choose a tag to compare

New indicators:

Modified indicators:

  • add K, D, and J aliases in results classes for Stochastic - #569

Bugs fixed:

  • Stochastic does not handle negative values (non-standard usage) - #584

Chores:

Special thanks to:

1.17.1

12 Sep 22:37
bf68a84
Compare
Choose a tag to compare

Minor indicator and utility updates:

Special thanks to:

1.17.0

06 Sep 03:45
870ee07
Compare
Choose a tag to compare

New/modified indicators:

Special thanks to:

1.16.0

29 Aug 02:33
4d2f579
Compare
Choose a tag to compare

New indicator:

Potentially breaking change:

  • added a lower limit constraint to Marubozu body size of 80% - #523

Chores:

  • separated documentation for EMA, DEMA, and TEMA

1.15.1

13 Aug 00:35
184a8e4
Compare
Choose a tag to compare

New preview indicator:

  • Marubozu candlestick pattern (preview)

    This is the first of many candlestick patterns that we intend to implement in the library. With this initial basic pattern, we hope to establish a baseline approach. Feedback appreciated. Follow the discussion on #220

Bugs fixed:

  • HMA minimum historical quotes requirements calculation / documentation - #518

Chores:

  • update the documentation to clarify indicators with convergence and repainting behavior

Special thanks to:

  • @bobtabor for finding this strange HMA bug and for your patronage
  • @heavymanto for suggesting documentation improvements

1.15.0

05 Aug 18:15
dc508dd
Compare
Choose a tag to compare

New indicator:

Special thanks to:

1.14.0

12 Jul 03:09
4bae9f1
Compare
Choose a tag to compare

New indicator:

New utilities for indicator results:

  • RemoveWarmupPeriods() will remove the recommended or specific quantities of warmup periods from indicator results. - #470

  • ConvertToQuotes() makes it easier to do indicator of indicators - #475

    // 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: