TA 的横向论文系列
ChartSeries Horizontal Lines on TA
我想将水平线添加到可以包含在 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 水平上添加水平线?
chart_Series(p,name = 'Price Development of Asset - Date top-right')
add_RSI()
您可以使用 'new' quantmod 绘图函数并自动获得 30/70 行。注意函数中的下划线。
我想将水平线添加到可以包含在 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 水平上添加水平线?
chart_Series(p,name = 'Price Development of Asset - Date top-right')
add_RSI()
您可以使用 'new' quantmod 绘图函数并自动获得 30/70 行。注意函数中的下划线。