So, I collect Open/Close data for a lot of tickers, process it in multiple ways, and use it for an ARIMA model. Right now, I do this through Excel, but I'm running into a lot of data capacity problems.
I've got a python terminal setup to my IBKR TWS so that I can collect data more efficiently, and I'm considering using an SQL database to store the data, but the problem is that I'm collecting, up-to-date data, on top of storage filling up fast, I reference the data (including the new, daily data) and I create dynamic model.
Would SQL be the right call for me? Things are real slow on excel, but it "works" (not 100% of the time because it crashes sometimes). I'm not super confident with SQL, so taking on the endeavor is a little scary without knowing that those sort of data demands can even be met by SQL in the first place. Would creating an SQL database for my daily collected, auto-updating, data be beneficial?