THe issue I have is printing two active windows (in this case two plots) one after the other.
Please find the code below. The win.print() command leads to a windows print dialog box. When i hit on print subsequently i find a "GraphAppJob" of 4 byte in the print queue and nothing is printed. Appreciate any help. Thanks.
library("quantmod")
getSymbols("YHOO",src="google")
barChart(YHOO)
addBBands()
win.print()
getSymbols("AAPL",src="google")
barChart(AAPL)
addBBands()
win.print()