I would like to parse Yahoo financial csv files in C++. Given that each line is formatted as:
Date,Open,High,Low,Close,Volume,Adj Close
what is an efficient way to get these values? I would like to store the date into a structure that contains a ctime struct for the date, and doubles for all other values.