The new data to be appended has a shorter length!
Here is an example:
Add numpy array:
ema  =  [3.3  3.4  3.5  3.6]
                                            (csv now has 3-columns of equal length)
1.1  2.1    append  ema  to end up with:    1.1  2.1  0
1.2  2.2                                    1.2  2.2  0
1.3  2.3                                    1.3  2.3  3.3
1.4  2.4                                    1.4  2.4  3.4
1.5  2.5                                    1.5  2.5  3.5
1.6  2.6                                    1.6  2.6  3.6
 
    