hc_add_series_ohlc {highcharter} | R Documentation |
This function helps to create candlestick from xts
objects
obtaining by getSymbols
function from the quantmod.
hc_add_series_ohlc(hc, x, type = "candlestick", ...)
hc |
A |
x |
A |
type |
The type of chart. Can be |
... |
Aditional shared arguments for the data series (http://api.highcharts.com/highcharts#series). |
## Not run: library("xts") data(sample_matrix) matrix_xts <- as.xts(sample_matrix, dateFormat = "Date") head(matrix_xts) class(matrix_xts) highchart() %>% hc_add_series_ohlc(matrix_xts) library("quantmod") x <- getSymbols("AAPL", auto.assign = FALSE) y <- getSymbols("SPY", auto.assign = FALSE) highchart() %>% hc_add_series_ohlc(x) %>% hc_add_series_ohlc(y) ## End(Not run)