yhilpisch / py4at

Jupyter Notebooks and code for the book Python for Algorithmic Trading (O'Reilly) by Yves Hilpisch.
http://home.tpq.io/books/py4at
Other
644 stars 325 forks source link

Ch3: How do you append new tstables data to existing file? #7

Closed arisliang closed 2 years ago

arisliang commented 2 years ago

Say earlier of the day, you have collected the data in ts file, the series named data. How do you append to the same series name? without getting the node already exist error? What's the kind of strategy here?

yhilpisch commented 2 years ago

You need to connect to the existing object (table) and then append the new data. You cannot create the object (table) anew.