Releases: facioquo/stock-indicators-dotnet
Release list
2.2.0
New indicators:
- McGinley Dynamic moving average - #875
Bugs fixes and improvements:
- fix: Renko pivot bricks - #877
- improved handling of flat quotes for ADX - #863
- added
.ToQuotes()option for Heikin-Ashi - #873 - exposed numerous utility functions - #878
Special thanks to @myalgomate, @moslem7026, @burakoner, and @shinel70 for recommending these items.
2.1.2
Bug fixed:
- ADX producing
NaNresult values with flat quotes over warmup periods - #859
Special thanks to:
- @myalgomate for reporting the issue
2.1.1
Minor feature improvement:
- Stochastic RSI can now be generated from a prior chainable indicator - #854
Special thanks to:
- @cyberyaga for identifying this use case
2.1.0
New indicator:
- True Range (TR) - see #845 for explanation
True Range was always part of the results for Average True Range (ATR), but we're pulling it out independently for people who want to apply any of our available moving average types instead.
Special thanks to:
- @barisertekin and @Erdogan34 for the recommendation
2.0.3
2.0.2
Minor update:
- return the same length as the provided
quoteswhen chaining, for consistency - #834
2.0.1
Chore: remove v1 migration helper error and warning messages
This release removes that information. See #802 for more information on breaking changes.
2.0.0 - indicator chaining
Major Release
This release introduces a major new indicator chaining capability and has breaking changes.
New features:
- indicator chaining - see #802 for details, examples, and a list of breaking changes
- slope of any indicator - #630
- moving average of any indicator, etc
- indicator of indicators
Special thanks to:
See our roadmap for notable planned features. We'll be working on a preview for streaming uses cases next; and will continue to work on new indicators and candlestick patterns. Help wanted!
1.23.1
Minor new features and updates:
- Basic Quote Transforms - #776
- add use of
candlePartto MACD - #788 - made percent values in Doji and Marubozu non-decimalized for consistency - #791
- numerous output values changed from
decimaltodouble- #797, #799 - renamed class
SignaltoMatchfor candlestick patterns to avoid conflicts with common user names - #791
Internal chores:
- add gaussian Brownian motion random quotes to test rig - #803
Special thanks to:
- @tiger2014 for contributing
candlePartfor MACD - @mihakralj for contributing GBM test rig tools
1.23.0
New features:
- .NET 7 (preview) target - #773
- HL2, OC2, HLC3, OHL3, OHLC4 selection
CandlePartoptions for SMA, EMA, and WMA - #772
Not-really breaking changes, to rename a few things:
ConvertToQuotes()renamed toToQuotes(), to be consistent with the C#ToList()style.GetDoubleEma()renamed toGetDema()GetTripleEma()renamed toGetTema()
I've set the old names as Obsolete, so you'll get a compiler Warning to help you find where and how to rename things. The old names still work, so they're not technically broken.
Special thanks to:
- @mihakralj for inspiring all of the above changes