getSplits: Load Financial Split Data

Description Usage Arguments Details Value Note Author(s) References See Also Examples

Description

Download, or download and append stock split data from Yahoo! Finance.

Usage

1
2
3
4
5
6
7
8
getSplits(Symbol, 
          from = "1970-01-01",
          to = Sys.Date(), 
          env = parent.frame(), 
          src = "yahoo", 
          auto.assign = FALSE, 
          auto.update = FALSE, 
          verbose = FALSE, ...)

Arguments

Symbol

The Yahoo! stock symbol

from

date from in CCYY-MM-DD format

to

date to in CCYY-MM-DD format

env

where to create object

src

data source (only yahoo is valid at present)

auto.assign

should results be loaded to env

auto.update

automatically add split to data object

verbose

display status of retrieval

...

currently unused

Details

Eventually destined to be a wrapper function along the lines of getSymbols to different sources - this currently only support Yahoo data.

Value

If auto.assign is TRUE, the symbol will be written to the environment specified in env with a .div appended to the name.

If auto.update is TRUE and the object is of class xts, the dividends will be included as an attribute of the original object and be reassigned to the environment specified by env.

All other cases will return the split data as an xts object. NA is returned if there is no split data.

Note

This function is very preliminary - and will most likely change significantly in the future.

Author(s)

Josh Ulrich

References

Yahoo! Finance: http://finance.yahoo.com

See Also

getSymbols, getDividends

Examples

1
2
3
4
5
6
7
## Not run: 
getSymbols("MSFT")
getSplits("MSFT")

getSplits(MSFT)

## End(Not run)

quantmod documentation built on May 2, 2019, 5:48 p.m.