pdfetch_YAHOO | R Documentation |
Fetch data from Yahoo Finance
pdfetch_YAHOO(
identifiers,
fields = c("open", "high", "low", "close", "adjclose", "volume"),
from = as.Date("2007-01-01"),
to = Sys.Date(),
interval = c("1d", "1wk", "1mo", "daily", "weekly", "monthly")
)
identifiers |
a vector of Yahoo Finance tickers |
fields |
can be any of "open", "high", "low", "close", "volume", or "adjclose" |
from |
a Date object or string in YYYY-MM-DD format. If supplied, only data on or after this date will be returned |
to |
a Date object or string in YYYY-MM-DD format. If supplied, only data on or before this date will be returned |
interval |
the frequency of the return data, can be '1d', '1wk', or '1mo' |
a xts object
## Not run:
pdfetch_YAHOO(c("^gspc","^ixic"))
pdfetch_YAHOO(c("^gspc","^ixic"), "adjclose")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.