All notable changes to this project will be documented in this file.
The project adheres to Semantic Versioning.
1.5.0 - 2020-11-23
- a new possibility to purge old data in order to free memory (use
indicator.purge_oldest(purge_size)
)
1.4.0 - 2020-11-14
- new indicators: Detrended Price Oscillator (DPO), Ease of Movement (EMV), Klinger Volume Oscillator (KVO), Vortex Indicator (VTX)
1.3.0 - 2020-11-06
- new indicators: Chande Kroll Stop, Choppiness Index, Commodity Channel Index, Coppock Curve, Mean Deviation
- performance comparison with
talib
library
1.2.0 - 2020-11-04
- new indicators: Aroon, Balance of Power (BOP), KAMA, TSI, TRIX
1.1.0 - 2020-11-01
-
indicator chaining (see the example in README)
sma = SMA(15, input_indicator = SMA(10, input_indicator = SMA(5, [1, 2, 3, ...])))
-
delta input values can be added as a single values as well as a list
sma.add_input_value(5) sma.add_input_value([5, 6, 7])
- the official release of
talipp