• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Best way to store historical data

Joined
12/27/07
Messages
15
Points
11
I'm working on a fun little project here at home and was wondering what you guys use to store historical data? I've never worked with databases, but now seems like a good time to start. I'm storing minute by minute historical data on a handful of stocks and their options contracts. Right now I'm just pulling the data off IB's historical servers and storing it in an Excel spreadsheet. This isn't going to scale up that easily. The goal is to retrieve the data and possibly run some intermediate calculations on it and graph the raw or calculated data.

Would an Access database be sufficient for my needs or should I lean more towards SQL?
 
If it is just storage and retrial, I would suggest using BerkelyDB. Searches will be limited to single key that you define. It lets you store raw structures but the api is also raw.
If you need SQL access and transactional integrity, but dont like to deal with installing and maintaining RDBMS process, I recommend SQLLite.
Both are embedded databases - meaning you dont need an external database process running. Both are portable and have interface bindings available for most of the commonly used languages.
 
Back
Top