Releases: ooples/OoplesFinance.StockIndicators
v1.0.49
v1.0.48
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
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
v1.0.45
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
v1.0.40
v1.0.39
v1.0.37
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
Full Changelog: release...v1.0.37
Public Release
This is the first public release