How to load CSV data file into R for use with quantmod
I am new to R and have just started to use it. I am currently experimenting with the quantmod package. The quantmod package seems to do most of what I want to do, however, I dont want to use the getSymbols() function to fetch data into R. Instead, I want to use my own data - stored as csv files on my local disc. I want to be able to slurp the data from my CSV files for use with quantmod. I came accros this article , which shows how to do read CSV files for use with quantmod, but I don't like it for at least 2 reasons: It writes a new (reformatted) CSV file to disc before loading into quantmod.