Click or drag to resize

AbsoluteRiskMeasuresDownsideDeviation Method

This measure is similar to the loss standard deviation except the downside deviation considers only returns that fall below a defined minimum acceptable return (MAR) rather than the arithmetic mean. For example, if the MAR is 7%, the downside deviation would measure the variation of each period that falls below 7%. (The loss standard deviation, on the other hand, would take only losing periods, calculate an average return for the losing periods, and then measure the variation between each losing return and the losing return average).

Namespace: Altaxo.Calc.Financial
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double DownsideDeviation(
	this IEnumerable<double> data,
	double minimalAcceptableReturn
)

Parameters

data  IEnumerableDouble
The sequence of periodic returns.
minimalAcceptableReturn  Double
The minimum acceptable return threshold.

Return Value

Double
The standard deviation of returns below minimalAcceptableReturn.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableDouble. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also