quantmod (version 0.4-14)

saveChart: Save Chart to External File

Description

Save selected chart to an external file.

Usage

saveChart(.type = "pdf", ..., dev = dev.cur())

Arguments

.type

type of export. See Details.

arguments to pass to device

dev

which device should be exported

Value

A file in the current directory (default) matching the type of the output requested.

Details

This function wraps the base R function pdf, postscript, png, jpeg, and bitmap. The .type argument must specify which device driver is desired.

The currently active device is used if dev is missing. The result is an exact copy (within the device limits) of the chart specified.

The name of the resultant file is derived from the name of the chart, with the appropriate extension appended. (from .type). Specifying the appropriate device file/filename will override this name.

The caller may specify any parameters that are valid for the device called. Internally, effort is made to match the dimensions of the device being used to create the output file. User supplied dimensions will override this internal calculation.

See Also

pdf png jpeg bitmap postscript

Examples

Run this code
# NOT RUN {
getSymbols("AAPL")

chartSeries(AAPL)

require(TTR)
addBBands()

saveChart('pdf')
saveChart('pdf', width=13)
# }

Run the code above in your browser using DataCamp Workspace