8

我想使用 quantmod生成这样的图https://stat.ethz.ch/pipermail/r-sig-finance/attachments/20110826/19da3834/attachment.png 。

我想,一个非常简单的任务让我有点沮丧。我希望能够使用 quantmod 在图表上画一条线。经过几天的尝试,我一无所获。我看不到如何使用 quantmod::addLines 函数执行此操作的示例(这是我发现的唯一类似问题,但找不到答案http://r.789695.n4.nabble.com/quantmod-图-趋势线-td894632.html )

我的问题是:我想在指定的日期/时间/条 nad y 值处绘制一条水平线。这条线只允许从某个特定的条开始为 n(例如 5)条长(此外,我还想在指定的 y 值的行上方添加文本)。

我尝试了几件事:

getSymbols("SPY")

lines.SPY <- (Hi(SPY) + Lo(SPY))/2
names(lines.SPY) <- c("lines")
lines.SPY$BuySell <- ifelse(lag(lines.SPY$lines) > lines.SPY$lines, 1, -1)

chartSeries(SPY, subset="2011-08::", theme=chartTheme('white',
up.col='blue', dn.col='red'))
addTA(lines.SPY$lines[lines.SPY$BuySell == -1,], type='p', col='darkred', pch="_", on=1, cex = 2.5)
addTA(lines.SPY$lines[lines.SPY$BuySell == 1,], type='p', col='green4', pch="_", on=1, cex = 2.5)

但这实际上不是线条......而且我不知道如何添加文字......

然后我试过这个

getSymbols("SPY")

subset = "2011-03::"

dev.new()
chartSeries(SPY, subset=subset, theme="white")
test <- xts(rep(coredata(last(Cl(SPY))), 20), order.by=index(last(SPY, n=20)))
addTA(test, on=1, col="red", legend=NULL, lwd=3)

同样,无法添加文本。这种方法的另一个问题是我无法摆脱顶部的传说。由于我想在一个图表图例上绘制数十或数百条线,因此不应显示...

提前感谢您的想法/代码示例/...

最好的问候,萨摩。

4

1 回答 1

3

(我只是复制了 Stergios Marinopoulos 的 R-sig-finance 的答案)使用新的 chart_Series() 函数以及文本和段。

require(quantmod) 
getSymbols("SPY") 
chart_Series(SPY, subset="2011-08::", type = "candlesticks" ) 
text(9, 112.00, "SOME TEXT", adj=0); 
segments(9, 111.5, 12, 111.5) ; 

我的一些补充评论。添加消息:text(x,y,"message")其中 x 是柱的编号(1 表示最左边的柱;您可以使用 0 或负数来绘制左侧),y 是图表中的值。对于 adj,0 表示左对齐,1 表示右对齐,0.5 表示居中。在 0..1 范围之外,它会相应地移动(但依赖它可能是不明智的)。

segment(x1,y1,x2,y2) 从 (x1,y1) 到 (x2,y2) 画一条线,其中 x 是条形索引,y 是价格。

下面以 20% 不透明红色绘制等腰三角形:polygon( c(20,30,40), c(5290,5320,5290), col="#ff000033")

即所有R图形功能都可用;但您必须使用 chart_Series()。

于 2011-12-13T03:44:01.907 回答