Originally Posted by AndrewAMD
Originally Posted by TrumpLost
And what is the return value from series(Data[0],8)?
A pointer to your array of eight doubles. (a.k.a. vars)
https://zorro-project.com/manual/en/series.htm


So when this line runs the first time, 7 of the 8 positions are initialized to some default? Is it 0? The second time this line runs, it automatically retains 7 of the items from the previous run, shifts the list forward by 1, and inserts the value of `Data[0]` in the first position?