Releases: DaveSkender/Stock.Indicators
1.4.0
New indicators:
- Pivot Points in 5 flavors
- Kaufman’s Adaptive Moving Average (KAMA)
- MESA Adaptive Moving Average (MAMA)
- Arnaud Legoux Moving Average (ALMA)
Modified indicators:
- increased
history
threshold for RSI (#222)
Chores:
- add Discussions for indicators and for other conversations
1.3.0
New indicators:
Chores:
1.2.0
New feature:
- allow the use of a custom generic quote class with IQuote interface - #179
This allows you to use your own historical quotes class so you can avoid having to transpose to the provided Quote
class. You may still use the provided Quote
class; however, this will give you an additional option. See Using custom quote classes in the guide for more information.
Special thanks to @MithrilMan for this contribution.
1.1.11
1.1.10
Minor breaking change (for few users):
- Replaced
PrepareHistory
with optionalValidateHistory
method. The former is no longer needed to improve performance in high-frequency operations.
Chores:
- Removed internal indexes - #180
Resolved issues:
1.1.5
1.1.2
1.1.0
- add .NET 5.0 framework targeting
Note: the package continues to include full compatibility and support for older .NET Framework, .NET Standard, and .NET Core targeted solutions. With that said, at some point, we will drop support for older frameworks when they become either obsolete or an impediment to continuous improvement.
1.0.6
Minor bug fix:
- Recompose the internal indexing of input
history
(historical quotes) for cases where it is cut down and reused after it was previously used or pre-cleaned. This is not a typical or common use case, but it can happen if a user is dynamically changing input history length between uses with methods likeTakeLast()
- see #170