This function retrieves financial data from Mfd.ru
getSymbols.Mfd(
Symbols,
env = globalenv(),
from = "2007-01-01",
to = Sys.Date(),
adjust = FALSE,
period = "day",
verbose = TRUE,
auto.assign = FALSE,
...
)
If auto.assign is TRUE, the function returns the Symbols argument with the retrieved data assigned to each symbol. If auto.assign is FALSE, the function returns an xts object.
character vector of symbols to retrieve
environment where the data will be assigned
a character string representing the starting date in 'YYYY-MM-DD' format. Default is '2007-01-01'.
a character string representing the ending date in 'YYYY-MM-DD' format. Default is the current system date.
a logical specifying whether to adjust for dividends and stock splits. Default is FALSE.
a character string specifying the period of the data to retrieve. Must be one of 'tick', '1min', '5min', '10min', '15min', '30min', 'hour', 'day', 'week', or 'month'. Default is 'day'.
a logical specifying whether to print progress messages. Default is TRUE.
a logical specifying whether to automatically assign the retrieved data to the symbols specified in the Symbols argument. Default is FALSE.
additional arguments passed to getSymbols.Mfd
Vyacheslav Arbuzov