| hc_add_series_xts {highcharter} | R Documentation |
xts objectThis function helps to create highstock charts from xts objects
obtaining by getSymbols function from the quantmod.
hc_add_series_xts(hc, x, ...)
hc |
A |
x |
A |
... |
Aditional shared arguments for the data series (http://api.highcharts.com/highcharts#series). |
## Not run:
library("quantmod")
usdjpy <- getSymbols("USD/JPY", src="oanda", auto.assign = FALSE)
eurkpw <- getSymbols("EUR/KPW", src="oanda", auto.assign = FALSE)
highchart(type = "stock") %>%
hc_add_series_xts(usdjpy, id = "usdjpy") %>%
hc_add_series_xts(eurkpw, id = "eurkpw")
## End(Not run)