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

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

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

                                        Maximum Drawdown or Maximum Loss
                                         最大的亏损或最大损失

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

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

This function computes the maximum drawdown or maximum loss of the univariate time series (or vector) x.
此函数计算的最大跌幅的单变量时间序列的最大损失(或矢量)x的。


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


maxdrawdown(x)



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

参数:x
a numeric vector or univariate time series.
一个数值向量或单变量时间序列。


Details

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

The max drawdown or max loss statistic is defined as the maximum value drop after one of the peaks of x. For financial instruments the max drawdown represents the worst investment loss for a buy-and-hold strategy invested in x.
最大缩编或最大损失统计的最高值下降被定义为后的峰值x之一。对于金融工具的最大提取买入并持有策略投资x最糟糕的投资损失。


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

A list containing the following three components:
一个列表,包含以下三部分组成:


参数:maxdrawdown
double representing the max drawdown or max loss statistic.
双最大的缩编或最大损失统计。


参数:from
the index (or vector of indices) where the max drawdown period starts.  
指数(或矢量指数)的最大提款期开始。


参数:to
the index (or vector of indices) where the max drawdown period ends.  
指数(或矢量指数)的最大提款期结束。


(作者)----------Author(s)----------


A. Trapletti



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

sterling
sterling


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


# Toy example[玩具的例子]
x <- c(1:10, 9:7, 8:14, 13:8, 9:20)
mdd <- maxdrawdown(x)
mdd

plot(x)
segments(mdd$from, x[mdd$from], mdd$to, x[mdd$from], col="grey")
segments(mdd$from, x[mdd$to], mdd$to, x[mdd$to], col="grey")
mid <- (mdd$from + mdd$to)/2
arrows(mid, x[mdd$from], mid, x[mdd$to], col="red", length = 0.16)

# Realistic example[现实的例子]
data(EuStockMarkets)
dax <- log(EuStockMarkets[,"DAX"])
mdd <- maxdrawdown(dax)
mdd

plot(dax)
segments(time(dax)[mdd$from], dax[mdd$from],
         time(dax)[mdd$to], dax[mdd$from], col="grey")
segments(time(dax)[mdd$from], dax[mdd$to],
         time(dax)[mdd$to], dax[mdd$to], col="grey")
mid <- time(dax)[(mdd$from + mdd$to)/2]
arrows(mid, dax[mdd$from], mid, dax[mdd$to], col="red", length = 0.16)

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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-29 03:53 , Processed in 0.023258 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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