talipp
talipp copied to clipboard
talipp - incremental technical analysis library for python
thank you for the great project. valuable for online trading. I found one issue, could you please fix it? vwap from pandas_ta will reset volume for each day(can pass in...
My program started running quite slow, according to cProfile this is caused by HMA indicator, which in turn uses WMA indicators, which seem to be slow. I don't know if...
Hello, Normalized Average True Range (NATR) is an other interesting technical indicator we don't have here See - Tulip Indicators (C) - doc: https://tulipindicators.org/natr - implementation: https://github.com/TulipCharts/tulipindicators/blob/master/indicators/natr.c - QuantConnect Lean...
Hello, These indicator (Intraday Range) is quite simple and is described in https://tradethatswing.com/which-is-better-average-true-range-atr-average-day-range-adr-or-intraday-range-ir/ It exists in 2 flavors : - dollar (or any quote currency) - % (relative) It only...
Hello, Just to let you know that [ruff](https://docs.astral.sh/ruff/) have found some lint errors. No a great deal ``` ruff check . examples\indicators.py:5:41: F401 [*] `talipp.indicators.RogersSatchell` imported but unused examples\readme_example.py:50:7: F541...
Hello, Following #155 there is also ADR - Average Day Range (ADR) This kind of indicator could be created quite simply using a `Smoother` (as suggested in #146 ) and...
Implements IntradayRange RelativeIntradayRange using higher level indicator FunctionCallerIndicator which is create using IndicatorFactory Closes #155
Closes #146
Hello, Test with `assertAlmostEqual` uses places which is close to absolute tolerance (atol) 10**-places is atol relative tolerance (rtol) would probably be a better idea. See https://github.com/nardew/talipp/pull/147/files#diff-356e9ecd00b59db50b3531a4b1143455b87bc4d213b491b642d19db6bff50ec9R51 Kind regards