I'm starting programming R. I use Quandl to download historical futures data (GCG1975, GCJ1975, GCM1975, GCQ1975, GCV1975, GCZ1975, GCG1976, GCJ1976, GCM1976, ..., GCZ2016)
.
Month codes:
G J M Q V Z
Years:
1975:2016
I want to download it all
, but I don't want to tape it all, so I think I want a function that downloads a year with all the months and then the next year again all the months. As an example, to download the first year:
require(Quandl)
Quandl("CME/GCG1975")
Any tip about the function or functions that are needed to this question is useful for me. Also if someone knows how to do it in Python is fine.
Thanks,
RTA
This answer assumes reading of the earlier question and comments so is not "code only".