Re: [R] Theme white bands blue and grey or other color

2015-09-30 Thread Giorgio Garziano
library(quantmod) getSymbols("YHOO") chartSeries(YHOO, theme="white") b1 <- addBBands(50,2) b1@params$colors$bg.col="#FF" b1 b2 <- addBBands(100,2) b2@params$colors$bg.col="#FF" b2 [[alternative HTML version deleted]] _

[R] Theme white bands blue and grey or other color

2015-09-27 Thread bgnumis bgnum
Hi all, I want to plot two bands in quant mod but with white theme, chartSeries(Fond,theme="white",TA = c(addBBands(50,2), addBBands(100,2) ) ) The thing is if I put this "t" it plot with black but two bands can be shown, ¿Is it psiible to put the two different bands with white theme¿? t=chartT