Releases: DaveSkender/Stock.Indicators
0.8.5
- change Chandelier multiplier from
double
todecimal
- potentially breaking change - add
[Serializable]
attribute to public classes. this is needed in rare cases where package users want to convert object to binary or use certain types of compression
0.8.3
BREAKING CHANGES:
- updated Stochastic RSI to require more parameters to control the Stochastic behavior and change from scale of 1 to 100
- replace use of
float
withdecimal
data type in calculations and result data due to minor observed rounding errors
Chores:
- update unit tests and documentation
0.8.0
New indicators:
- Double Exponential Moving Average (DEMA)
- ConnorsRSI
Chores:
- protected SET on Index property in Quote and various results classes.
If you are using derived classes for any of these, see the using derived classes section in the Guide for more information.
0.7.0
New indicators:
- Keltner Channel
- Donchain Channel
- William %R
- R-Squared added to Correlation Coefficient output
Chores:
- update Chaikin Oscillator history requirements
- add unit tests for better code coverage
0.6.0
New indicators:
- On-balance Volume (OBV)
- Accumulation Distribution Line (ADL)
- Chaikin Money Flow (CMF)
- Chaikin Oscillator
- Rate of Change (ROC)
Chores:
- cleanup naming conventions
- update documentation
0.5.23
0.5.21
Updated indicators:
-
Added more appropriate validation on EMA history requirements. Please note that this indicator does require substantially more history due to convergence. For example, an EMA(250) requires more than 3 years of history.
Given that you may be getting your history from a feed, you'll need to handle theBadHistoryException
or pre-validate the history you're getting to avoid surprises and errors. -
Reverted nullability for IsBullish flag on Heikin-Ashi. It was an unnecessary change.
Chores:
- Added Index value to test data spreadsheet
0.5.19
Updated indicators:
- added Width to Bollinger Bands result value
- added ATR Percentage (ATRP) result value
Chores:
- refactor and update unit tests
0.5.14
Updated indicators:
- added Z-Score to both Bollinger Band and Standard Deviation results
Buggy fixes:
- improved
IsIncreasing
results for RSI, Stochastic RSI, Stochastic, and Heikin-Ashi to better handle the "no change" edge case. The priorIsIncreasing
value will now persist when there is no change and will only change when there is an actual reversal. In other words, no change does not count as a reversal anymore.
Chores:
- updated documentation, added some badges, etc.
- refactored some exceptions in modified indicators
0.5.12
Bug fixes:
- for Stochastic, RSI, and Stochastic RSI the
IsIncreasing
result value returned true when there was no change (e.g. should have beencurrent > last
instead ofcurrent >= last
Chores:
- update documentation
- add Jekyll GitHub Pages site -> https://daveskender.github.io/Stock.Indicators
- update packages