JosueNina

Results 3 comments of JosueNina

[spy_zigzag.csv](https://github.com/user-attachments/files/18083764/spy_zigzag.csv)

``` from talipp.indicators import ZigZag from talipp.ohlcv import OHLCVFactory import pandas as pd history = pd.read_csv("https://github.com/QuantConnect/Lean/raw/master/Data/equity/usa/daily/spy.zip", index_col=0, names=["open", "high", "low", "close", "volume"]) ohlcv = OHLCVFactory.from_matrix2([ history.open.values, history.high.values, history.low.values, history.close.values, history.volume.values...

#8454 A key detail to know is that the values are calculated one at a time, so we don't know if a higher or lower point might exist before finding...