找回密码
 注册
查看: 597|回复: 0

R语言 TShistQuote包 histQuote()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 12:43:14 | 显示全部楼层 |阅读模式
histQuote(TShistQuote)
histQuote()所属R语言包:TShistQuote

                                        Methods to wrap get.hist.quote for TSdbi Generics
                                         方法,包装get.hist.quote为TSdbi泛型

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Get a time series (matrix) from stock quote URL
股票报价URL中获取的时间序列(矩阵)


用法----------Usage----------


     histQuote()
    ## S4 method for signature 'character,TShistQuoteConnection'
TSget(
        serIDs, con, TSrepresentation = options()$TSrepresentation,
        tf = NULL, start = tfstart(tf), end = tfend(tf), names=serIDs,
        quote = "Close", quiet = TRUE, repeat.try=3, ...)
##  \S4method{TSput}{ANY,character,TShistQuoteConnection}(
##        x, serIDs=seriesNames(data), con, ...)   
    ## S4 method for signature 'histQuoteDriver,character'
TSconnect(
        drv, dbname, user="", password = "", host="", ...)
    ## S4 method for signature 'character,TShistQuoteConnection'
TSdates(
        serIDs, con, vintage=NULL, panel=NULL, ... )  
    ## S4 method for signature 'character,TShistQuoteConnection'
TSdescription(x, con, ... )  
    ## S4 method for signature 'character,TShistQuoteConnection'
TSdoc(x, con, ... )  
    ## S4 method for signature 'character,TShistQuoteConnection'
TSlabel(x, con, ... )  
    ## S4 method for signature 'character,TShistQuoteConnection'
TSsource(x, con, ... )  

    ## S4 method for signature 'TShistQuoteConnection'
dbDisconnect(conn,...)



参数----------Arguments----------

参数:con
a database connection object.
一个数据库连接对象。


参数:conn
a database connection object.
一个数据库连接对象。


参数:serIDs
identifiers for series on the database.
的数据库标识符系列。


参数:vintage
character string indicating vintage of the series on the  database (not supported by this database).
字符串,指示复古系列的数据库(这个数据库不支持)。


参数:panel
character string indicating panel of the series on the  database (not supported by this database).
字符串,表示面板的系列数据库(这个数据库不支持)。


参数:x
time series data(TSput), or  identifiers for series on the database (TSdoc and TSdescription).
时间系列数据(TSput“),或对数据库标识符系列(TSdoc和TSdescription)。


参数:names
optional character vector to use for series names in the R object.
可选字符向量,用系列的R对象的名称。


参数:drv
a database driver object.
一个数据库驱动的对象。


参数:dbname
a character string indicating the name of a database.
一个字符表示一个数据库的名称的字符串。


参数:tf
time frame for trimming data, passed to tfwindow.
剪切数据的时间框架,传递到tfwindow的。


参数:start
time frame for trimming data, passed to tfwindow.
剪切数据的时间框架,传递到tfwindow的。


参数:end
time frame for trimming data, passed to tfwindow.
剪切数据的时间框架,传递到tfwindow的。


参数:TSrepresentation
time representation for returned series.  (See TSget in package TSdbi.)
返回系列的时间表示。 (见TSget,在包TSdbi。)


参数:quote
reference time (e.g. ”Close”) passed to get.hist.quote.
参考时间(例如“关闭”)传递给get.hist.quote。


参数:quiet
logical to suppress progress report, passed to get.hist.quote.
逻辑抑制进度报告,传递给get.hist.quote。


参数:repeat.try
integer number of times to attempt retrieval before giving up.
整数倍放弃之前尝试检索。


参数:user
(unused) a character string indicating a user id.
(未使用)一个字符串,表示一个用户ID。


参数:password
(unused) a character string indicating a password.
(未使用)一个字符串,表示一个密码。


参数:host
(unused) a character string indicating a host computer.
(未使用)的字符串表示的主机计算机。


参数:...
Arguments passed to get.hist.quote.
参数传递给get.hist.quote。


Details

详细信息----------Details----------

These functions interface to a stock quote URL using get.hist.quote from the  tseries package. Only URLs ”yahoo” and ”oanda” are supported. TShistQuote is just a wrapper to get.hist.quote. No  extra functionality is provided, only an interface that is consistent  with TSdbi. The TSdbi function argument dbname is mapped to get.hist.quote argument provider, and serId to instrument. Argument quote (ignored for provider 'oanda') is set to ”Close” by default, but can be specified. get.hist.quote argument retclass is replaced by TSdbi argument TSrepresentation. (See TSget in TSdbi for more details on how this works.)
这些功能接口一个股票报价URL使用get.hist.quote的,从tseries包。只有“雅虎”的URL和“OANDA万达”的支持。 TShistQuote到get.hist.quote只是一个包装。没有额外的功能,只提供一个接口,符合TSdbi。 TSdbi函数的参数映射dbnameget.hist.quote的话,provider,和serId的instrument。参数quote(忽略供应商OANDA万达)在默认情况下被设置为“关闭”,但可以指定。 get.hist.quote参数retclass取代TSdbi参数TSrepresentation。 (见TSgetTSdbi这是如何工作的更多细节。)

TShistQuote does not support writing data to the source URL.
TShistQuote不支持写入数据源URL。

The classes histQuoteDriver and TShistQuoteConnection extend classes DBIDriver and  DBIConnection in the DBI package.
的类histQuoteDriver和TShistQuoteConnection扩展类DBIDriver和DBIConnection在DBI包。

See the package vignette for additional examples.
更多的例子,请参阅程序包的小插曲。


值----------Value----------

Depends.
视情况而定。


参见----------See Also----------

TSdates, TSget, get.hist.quote tfwindow,
TSdates,TSget,get.hist.quotetfwindow,


实例----------Examples----------


    require("tseries")
    require("tfplot")
    con <- TSconnect("histQuote", dbname="yahoo")
    x <- TSget("^ftse", con)
    tfplot(x)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-29 01:53 , Processed in 0.023499 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表