在 R 中使用包 'quantmod' 时,如何抑制价格图表上的 'last price' 行文本?

When using package 'quantmod' in R, how to suppress the 'last price' line of text on a price chart?

我正在使用 R 包 quantmod 中的函数 chartSeries() 绘制价格图表。这是一个例子:

#Load package 'quantmod'
library(quantmod)

#Download quotes for VNQ
hist.xts <- getSymbols('VNQ',
                       from = '2006-1-1',
                       to = '2006-1-31',
                       auto.assign = F)

#Plot price chart
chartSeries(hist.xts, type = 'bars')

这是价格表:

如何隐藏文本 "Last 64.050003" 使其不显示在图表上?

您必须按照文档中的指示插入参数 TA = NULL,在此示例中:http://www.quantmod.com/examples/charting/#chartseries

chartSeries(hist.xts, type = 'bars', TA = NULL)