TA-Lib : Technical Analysis Library

PeriodConvertionFlags Enumeration

Allows to control the algorithm used on period compression and expansion.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

[Visual Basic]
Public Enum PeriodConvertionFlags
[C#]
public enum PeriodConvertionFlags
[C++]
public __value enum PeriodConvertionFlags
[JScript]
public enum PeriodConvertionFlags

Members

Member NameDescriptionValue
UseAverageEach variables, except for Volume and OpenInterest, are compress by calculating the average of all the values of the corresponding existing variable. 0
UseAverageVolumeThe volume is compress by calculating the average of all the values of the existing Volume variable. 1
UseDailyAverageVolumeSame as UseAverageVolume, except that the resulting compression is always the "Daily Average Volume". This flag overrids the UseAverageVolume flag. This flag will not work for compression to an intraday period. 2
UseAverageOpenInterestThe OpenInterest is compress by calculating the average of all the values of the existing Volume variable. 3
UseDailyAverageOpenInterestSame as UseAverageOPenInterest, except that the resulting compression is always the "Daily Average Open Interest". This flag overide the UseAverageOpenInterest flag. This flag will not work for compression to an intraday period. 4

Requirements

Namespace: TA.Lib

Assembly: Timeseries (in Timeseries.dll)

See Also

TA.Lib Namespace