I have what should be a very common use case, that is, ingesting streaming financial data, and computing indicators on-the-fly based off of the streaming price/volume data. I feel if, every tick, I simply collect into a DataFrame and then serialize into a Table to send it over the network, I'm not getting much out of Perspective. What should I do in this case?
Somewhat unrelated, but I also want to keep price/volume data for a set of tickers over a time axis, which would be 3D table (tensor). What's the best way to implement this with the Table API? A Table per ticker?
I have what should be a very common use case, that is, ingesting streaming financial data, and computing indicators on-the-fly based off of the streaming price/volume data. I feel if, every tick, I simply collect into a DataFrame and then serialize into a Table to send it over the network, I'm not getting much out of Perspective. What should I do in this case?
Somewhat unrelated, but I also want to keep price/volume data for a set of tickers over a time axis, which would be 3D table (tensor). What's the best way to implement this with the Table API? A Table per ticker?