Skip to content

Releases: ooples/OoplesFinance.StockIndicators

v1.0.49

19 Dec 02:11
Compare
Choose a tag to compare

Fixed typo in the SuperTrend Indicator that was returning all of the same results. Thanks to @whatthejay for reporting this!
Added the Ehlers Simple Decycler Indicator to the list of moving average options

v1.0.48

07 Dec 05:51
Compare
Choose a tag to compare

BREAKING CHANGE: Changed all decimal variables to use doubles instead so be warned that this will break things since it now takes doubles only for now. This was due to a suggestion from Kevin.

Added a new indicator! Introducing the Market Meanness Indicator which is a new volatility indicator. This was due to a suggestion from @gcaplan

v1.0.47

10 Oct 20:20
Compare
Choose a tag to compare

Big thanks to @kingchenc for helping to find the bugs!

Fixed 2 bugs in rsi calculation
Fixed bug in mfi calculation
Fixed bug in hma calculation
Fixed bug in ema calculation

v1.0.46

26 Jul 15:21
Compare
Choose a tag to compare

Fixed an issue and added new output options for the Rahul Mohindar Oscillator

v1.0.45

19 Jul 16:07
Compare
Choose a tag to compare

Added a new clear method to make it easier to work with the same input source on several lines. See the example below:

var stockData = new StockData(bars.Select(x => x.Open), bars.Select(x => x.High), bars.Select(x => x.Low), 
bars.Select(x => x.Close), bars.Select(x => x.Volume), bars.Select(x => x.TimeUtc), InputName.High);

var sma = stockData.CalculateSimpleMovingAverage(14);

// if you don't perform this clear method in between then your ema result will be calculated using the sma results
stockData.Clear();

var ema = stockData.CalculateExponentialMovingAverage(14);

#17 Added source code license and contact info to all pages @claudio-silva

v1.0.43

03 Apr 14:11
Compare
Choose a tag to compare

Included new parameter for StockData class to specify input for calculations. Default is Close but you can change to many other inputs.

Updated example code to show more advanced examples

v1.0.40

03 Mar 20:23
Compare
Choose a tag to compare

Removed support for .net core 3.0 since it was causing build errors
Fixed critical bug with missing input values using new ticker form of stock data class

v1.0.39

26 Feb 21:50
Compare
Choose a tag to compare

#16 Fixed a critical bug reported by @SvenSkrabal
Added a new method to create the stock data class based on the classic ticker format

v1.0.37

23 Feb 05:20
Compare
Choose a tag to compare

What's Changed

  • The PVS Studio static analyzer tool has found several issues by @OlegRa in #1
  • Added over 100 new indicators to bring the total to over 750 indicators
  • Fixed critical bugs in 7 calculations: Ehlers Spearman Rank, Ehlers Noise Elimination Technology, Relative Volatility Index V1, Projection Bands, Projection Oscillator, Projection Bandwidth, and Percentage Trend
  • Added default rounding of 4 decimal points to all values
  • Replaced all ElementAtOrDefault() with direct indexing
  • Other various bug fixes and improvements

New Contributors

  • @OlegRa made their first contribution in #1

Full Changelog: release...v1.0.37

Public Release

06 Jan 00:29
c05434b
Compare
Choose a tag to compare

This is the first public release