getHistory(RTDAmeritrade)
getHistory()所属R语言包:RTDAmeritrade
Get full history for a symbol
获取完整的历史的象征
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Take the session id, and a list of symbols, fetch and parse the bytecode data into a list suitable for using in R.
以会话ID,一个符号列表,获取和分析字节码列表中的数据转换成适合使用在R
用法----------Usage----------
getHistory(sessionid, source, stocks, startdate, enddate, ..., url='https://apis.tdameritrade.com/apps/100/PriceHistory;jsession=sessionid?source=sourceid&startdate=datestart&enddate=dateend&requestvalue=stocks&intervaltype=MINUTE&extended=true&intervalduration=1&requestidentifiertype=SYMBOL', cl=F)
参数----------Arguments----------
参数:source
The TD Ameritrde supplied source, similar to a user name but for the API.
TD Ameritrde提供的源代码,类似的用户名,但这个API。
参数:sessionid
The current session id returned from login.
返回当前会话ID登录。
参数:stocks
A collection of symbols to fetch data for.
符号的集合来获取数据。
参数:startdate
start date string Y-m-d e.g. 2012-01-01
开始日期字符串Y-M-D例如2012-01-01
参数:enddate
end date string Y-m-d e.g. 2012-02-01
结束日期字符串Y-M-D例如2012-02-01
参数:...
extended arguments not needed, but can be changed.
扩展论调也不是必要的,但可以改变的。
参数:url
url of the TD Ameritrade API to call for the data.
URL中TD Ameritrade的API的调用的数据。
参数:cl
a cluster instance if wanting to perform in parallel.
例如,如果想要并行执行的聚类。
参见----------See Also----------
TDALogin.
TDALogin。
实例----------Examples----------
##print the session id returned from the login try[#打印返回会话ID的登录尝试]
## Not run: [#不运行:]
user="username"
pass="password"
source="TSLU"
version="1.0"
log = try(TDALogin(source, version, user, pass))
print(log)
stocks = c("RYAAY","WEC","HRL","SRCL","DVA","FDO","SPY","DIA", "QQQ")
library(snow)
cl = makeCluster(8, type="SOCK")
clusterExport(cl, list("user","pass","source","version","startdate","enddate","url", "log"))
clusterCall(cl, prepareSlave)
hist = getHistory(log, source, stocks, startdate=startdate, enddate=enddate, cl=cl)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|