Releases: DaveSkender/Stock.Indicators
Releases · DaveSkender/Stock.Indicators
0.11.5
0.11.3
Updated indicators:
- added % change to PRS
Chores:
- update docs
0.11.0
New indicators:
- Ultimate Oscillator
- Price [Comparative] Relative Strength
- Triple EMA
- Slope / Linear Regression
- Volume SMA
Updated indicators:
- Add %B to Bollinger Bands
- Add optional SMA overlay for ADL, OBV, ROC, and STDEV
Chores and fixes:
- Update docs and charts
- Fix bad history sort resolution in Cleaner of test data
Special thanks to:
- @chetanku for contributing Ultimate Oscillator
Comments:
This is likely the last minor release prior to the initial v1.0 release (#104)
0.10.30
Internal chores only:
- final performance tuning (#114), for now; see test results
- add more unit tests to cover edge cases
- refactor code to address cyclomatic complexity
0.10.27
Chores:
- added charts to documentation to make it easier to visualize the indicators (all generated using this library)
- refactor: performance tuning on Double EMA
Bug fixes:
0.10.10
MINOR BREAKING CHANGES
- changed
Volume
data type fromlong
todecimal
in theQuote
class - added
extended
parameter to SMA to automatically exclude MAD, MSE, and MAPE calculations by default
Chores:
- significant performance tuning across all indicators
- added performance benchmarking tooling (see performance benchmarks)
- minor bug fixes
- update documentation
Special thanks to:
- @ikorman for contributing ideas for performance improvement
- @baidenx7 for contributing changes to
Quote
class to better support cryptocurrency's non-integer volume
0.10.2
MINOR BREAKING CHANGE
for Chandelier Exit:
- renamed parameter
variant
totype
and changed it fromstring
toChandelierType
enum
0.10.0
BREAKING CHANGES:
- Removed public accessibility to the
Index
property of bothQuote
and various results classes. From a user's perspective,Index
no longer exists. - Removed extra helper and analysis fields (e.g.
IsBullish
,IsIncreasing
,IsDiverging
,IsCrossed
, etc) from various results classes - This simplification and removal of extra features came from user feedback poll (#92) and is something I've been thinking about. A core theme of this library is that it just produces indicators, nothing more. A large majority of users also prefer a simple library without superfluous flourishes.
New indicators:
- Weighted Moving Average (WMA)
- Hull Moving Average (HMA)
- Zig Zag overlay
- Ichimoku Cloud
Chores:
- update documentation (add guidance for making indicator of indicators)
- refactor unit tests
- add dependabot configuration
0.9.5
0.9.1
New indicators:
- Money Flow Index (MFI)
- Price Momentum Oscillator (PMO)
Chores:
- add globalization considerations
- update documentation