Storing time series data
by Saeed Amen
Cuemacro
February 2, 2019
Subjects: Data, General, Python
...
When it comes to analysing financial markets, the ingredients are key,
essentially the data. However, with data, comes the need to storage.
We need to have a good “fridge” to use our burger metaphor. Typically
most financial data is in some sort of time series type format. You
have some timestamp, and then some observation, like a price, economic
data, news article etc. So the question basically amounts to what is
the best way to store time series? In this article I’ll go through
some of the solutions for storing time series data. It is of course
not an exhaustive list but hopefully it’s still a start.
...
****************************************************
What I do is use CSV or binary files named by the stock symbol. How do you store time series data?
by Saeed Amen
Cuemacro
February 2, 2019
Subjects: Data, General, Python
...
When it comes to analysing financial markets, the ingredients are key,
essentially the data. However, with data, comes the need to storage.
We need to have a good “fridge” to use our burger metaphor. Typically
most financial data is in some sort of time series type format. You
have some timestamp, and then some observation, like a price, economic
data, news article etc. So the question basically amounts to what is
the best way to store time series? In this article I’ll go through
some of the solutions for storing time series data. It is of course
not an exhaustive list but hopefully it’s still a start.
...
****************************************************
What I do is use CSV or binary files named by the stock symbol. How do you store time series data?