为 ttr 功能获取正确的系列

发布于 2025-01-01 10:58:49 字数 505 浏览 0 评论 0原文

我从 TTR 文档中得到了一些示例,例如:

data(ttrc)

mfi <- MFI(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])

data(ttrc)
price <- ttrc[,"Close"]

data(ttrc)
macd <- MACD( ttrc[,"Close"], 12, 26, 9, maType="EMA" )

data(ttrc)
ema.20 <- EMA(ttrc[,"Close"], 20)

data(ttrc) 是数据虚拟还是什么? 我想用于

getSymbols("AAPL",src="yahoo") 

该系列并从中选择正确的列,例如“关闭”或“体积”

“可强制 xts 或矩阵的系列” 如何将时间序列从 getSymbols 转换为正确的矩阵以使用文档中的示例?

谢谢!

I got a few examples from TTR documentation like:

data(ttrc)

mfi <- MFI(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])

data(ttrc)
price <- ttrc[,"Close"]

data(ttrc)
macd <- MACD( ttrc[,"Close"], 12, 26, 9, maType="EMA" )

data(ttrc)
ema.20 <- EMA(ttrc[,"Close"], 20)

Is data(ttrc) a data-dummy or what?
I want to use

getSymbols("AAPL",src="yahoo") 

for the Series and select the right column from it like 'close' or 'volume'

"series that is coercible to xts or matrix"
How do I transform the timeseries from getSymbols to right matrix to use the examples from the documentation?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2025-01-08 10:58:49

手册?ttrc确认数据是随机的。

您可以使用 AdVo 等函数或直接使用方括号提取所需的列。

tail( MACD(Ad(AAPL)) )
tail( MACD( AAPL[,"AAPL.Adjusted"] ) )

The manual, ?ttrc, confirms that the data is random.

You can extract the columns you want with the Ad, Vo, etc. functions or directly with square brackets.

tail( MACD(Ad(AAPL)) )
tail( MACD( AAPL[,"AAPL.Adjusted"] ) )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文