Standard Variance (SMV)


Namespace: OpenQuant.API.Indicators
Assembly: OpenQuant.API (in OpenQuant.API.dll)

Syntax

Visual Basic (Declaration)
Public Class SMV
    Inherits Indicator
C#
public class SMV : Indicator
C++
ref class SMV : Indicator
J#
public class SMV extends Indicator
JScript
public class SMV extends Indicator

Remarks

The Standard Variance does not generate trading signals in the traditional sense, since it is blind to market direction. However, it may be used as part of a trading strategy that depends on market volatility. Examining the daily Sugar chart below shows that periods of low volatility tend to precede strong market moves. Hence, you may want to use low readings in this tool as signals to initiate breakout strategies. Note how often declining volatility readings during trends indicate stalls or trend reversals. Therefore, you may want to consider using such declining readings as part of an exit or reversal strategy.

Standard Deviation is a statistical measurement of volatility. It is derived by calculating an n-time period Simple Moving Average of the data item; summing the squares of the difference between the data item and its Moving Average over each of the preceding n-time periods; dividing this sum by n.

Formula:

Inheritance Hierarchy

System.Object
   OpenQuant.API.Indicator
      OpenQuant.API.Indicators.SMV

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also