nardew
nardew
Hi @hysech , instantiating three independent RSI indicators should not be problematic in any way: ```python close = random.sample(range(1, 10000), 1000) rsi1 = RSI(2, input_values=close) rsi2 = RSI(3, input_values=close) rsi3...
Hi, talipp already provides [Pivot High Low](https://nardew.github.io/talipp/latest/reference/talipp/indicators/PivotsHL/?h=pivot#talipp.indicators.PivotsHL) which provides similar functionality to zig zag. Read more e.g. [here](https://www.fidelity.com/learning-center/trading-investing/technical-analysis/technical-indicator-guide/pivot-points-high-low).
@P-Lamont delivered in `2.3.0`.
I have been considering this already and definitely is on the roadmap. However, I cannot give you any day when this get implemented. If more people "upvote" this, then it...
Can you guys describe how the output would look like?
I meant what would be the outcome of an indicator. Currently each indicator outputs a value for every input value.
I am not sure I understand, could you please elaborate a bit more? What exactly is the problem with current version?
Thanks @CITIZENDOT for the contribution. I will run a few more tests to make sure that the implementation is able to cope with corner cases and if all good, I...
Hi @afkjm , thanks for the feedback. In the meantime, what exactly is not clear from the example? Output of one indicator simply becomes input of another one. ```python #...
Delivered in #125