Skip to content
Prev 13722 / 15274 Next

addTA not working

This question has been asked many, many times on this list and on
StackOverflow.  You need to either 1) include the addTA call in your
chartSeries call, or 2) wrap the addTA call in plot().

# 1)
candleChart(sym, subset='2016-01::2016', name=ticker,
  theme="white", TA='addTA(Forecast,col="blue",on=1)')
# 2)
candleChart(sym, subset='2016-01::2016', name=ticker, theme="white", TA=NULL)
plot(addTA(Forecast,col="blue",on=1))

On Thu, Mar 3, 2016 at 11:28 AM, George Schmoll
<george.schmoll at sbcglobal.net> wrote: