Releases: facioquo/stock-indicators-dotnet
Release list
3.0.0-preview.1014.15
Warning
Preview releases are experimental and volatile with breaking changes and conventions.
Note
This is the first in a series of preview releases that implement streaming use cases. We expect possibly 5-10 preview pre-release versions before we make an official stable v3 package.
New features and scenarios:
- handle live quotes and provide them to other subscribers
- enable Use, EMA, and SMA indicator streaming
- live test case for WebSocket in
/tests/observe/inv3branch
See #824 for more information and limitations on these use cases, and #1018 for general discussion and feedback.
Special thanks to @codebeaulieu, @danbopes, @martonb, and @mihakralj for early feedback and ideas
2.4.7
Minor update:
- reduced minimum
lookbackPeriodvalue for Hurst Exponent
❤️ Special thanks to @sshquack for contributing it.
2.4.6
Minor fix:
- fix: make
quotes.ToSortedCollection()public for those needing it to make custom indicators - #976
2.4.5
- use generic base return types for several newly
publicutility methods
This is needed for wider extensibility and compliance to the Common Language Specification (CLS).
See #970 for details.
2.4.3
Bug fixed:
- CMO use of daily momentum - #962
Special thanks to @mihakralj for analyzing and reporting
2.4.2
Minor change to accommodate custom indicator chaining:
- make
IReusableResulta public interface - #953
This enables custom indicators to be chainable. Example:
// custom external results class
public class MyCustomResult : ResultBase, IReusableResult
{
public double? MyCustomValue { get; set; }
// identify value choice for further chaining
double? IReusableResult.Value => MyCustomValue;
}Special thanks to @drakepro for recommending it. See our guide to learn more about creating custom indicators.
2.4.1
Minor improvements:
- add Dominant Cycle Periods to HT Trendline - #948
- discontinue calculation of True Range on first bar - #949, shifts calculation start by one bar for:
- True Range and Average True Range
- ATR Stop
- Chandelier Exit
- STARC Bands
- SuperTrend
- Volatility Stop
Special thanks to @mihakralj and @twopirllc for inspiring these changes.
Chores:
- documentation site has moved to dotnet.stockindicators.dev
- removed .NET 5.0 target framework (inline with Microsoft support ending)
2.4.0
Minor enhancement:
- add configurable adjustment
k-factorfor McGinley Dynamic - #901
Minor bug fix:
Special thanks to:
- @myalgomate for recommending customizable
k-factor
2.3.0
New indicators:
Special thanks to:
- @wclark17 for recommending CMO
- @myalgomate for recommending ATR Trailing Stop
- @stridskoma2 and @myalgomate for your patronage
❤️ If you use our library and like what we're doing, consider becoming a sponsor.
2.2.1
Oops, forgot to make .ToQuotes() public for HeikinAshi - #881