TA上的ChartSeries水平线

时间:2017-10-03 20:30:13

标签: lines quantmod technical-indicator horizontal-line

我想在可以包含在ChartSeries图表中的addRSI函数中添加水平线。

当我打电话

getSymbols("VELO.CO")
p <- na.omit(VELO.CO)

name <- ""
chartSeries(p,name = 'Price Development of Asset - Date top-right')
chartSeries(p,subset = fivemonths,name = 'OBV, RSI, MACD Chart, and 50 & 200 
day EMA')
addOBV(col='white')
addRSI()
addMACD()
addBBands()

这给了我一张漂亮的图表,上面列出了所有指标。但是,我想知道是否可以在图表的RSI部分的70和30级添加水平线?

1 个答案:

答案 0 :(得分:1)

chart_Series(p,name = 'Price Development of Asset - Date top-right')

add_RSI()

您可以使用&#39; new&#39; quantmod绘图功能并自动获得30/70行。请注意函数中的下划线。