joshuaulrich / quantmod

Quantitative Financial Modelling Framework
http://www.quantmod.com/
GNU General Public License v3.0
818 stars 224 forks source link

remove disk i/o from getSymbols and getQuote functions #280

Closed ethanbsmith closed 4 years ago

ethanbsmith commented 5 years ago

replace download.file(url, tmp) read.csv(tmp) pattern with read.csv(curl::curl(url)) replace download.file(url, tmp) fromJSON(tmp) pattern with fromJSON(curl::curl(url))

tested to work with existing quantmod dependencies in R 3.2 Capture