In R,
I have 1 year of csv timeseries data in format DateTime and Close. I want to plot 1 day graphs of each day and then export them, ideally having the file name be the date of the graph.
The steps in this link http://www.r-bloggers.com/automatically-save-your-plots-to-a-folder/ are very helpful and are what I will use, but I need help figuring out how to automate the plotting of one day graphs first.
Currently using chart_Series to chart and then zoom_Chart to focus on the dates I want, and then manually exporting.
I am doing
spxxts <- xts(spx$Close, order.by = spx$DateTime)
chart_Series(spxxts)
and then
zoom_Chart("2007-04-30")