我想获得情节上的坐标。
首先,我在R中绘制candleChart
,我想获取最后一根烛台的坐标并在其上添加.png
图像。
代码如下:
candleChart(eje.xts,subset = "last 3 months",name=mensaje,TA=c(addMACD(),addRSI(),addBBands()),theme = "white",up.col = "green",dn.col="red")
其中eje.xts
是表格的数据:日期,开放,高,低,关闭
有没有办法获得它?
I want to obtain the some coordinate of the rectangle
非常感谢!!