Table of Contents

Class Field

Namespace
FinanceSharp
Assembly
FinanceSharp.dll

Provides static properties to be used as selectors with the indicator system

public static class Field
Inheritance
Field
Inherited Members

Properties

Average

Defines an average price that is equal to (O + H + L + C) / 4

public static Func<DoubleArray, double> Average { get; }

Property Value

Func<DoubleArray, double>

Close

Gets a selector that selects the Close value

public static Func<DoubleArray, double> Close { get; }

Property Value

Func<DoubleArray, double>

High

Gets a selector that selects the High value

public static Func<DoubleArray, double> High { get; }

Property Value

Func<DoubleArray, double>

Low

Gets a selector that selects the Low value

public static Func<DoubleArray, double> Low { get; }

Property Value

Func<DoubleArray, double>

Median

Defines an average price that is equal to (H + L) / 2

public static Func<DoubleArray, double> Median { get; }

Property Value

Func<DoubleArray, double>

Open

Gets a selector that selects the Open value

public static Func<DoubleArray, double> Open { get; }

Property Value

Func<DoubleArray, double>

SevenBar

Defines an average price that is equal to (2O + H + L + 3C)/7

public static Func<DoubleArray, double> SevenBar { get; }

Property Value

Func<DoubleArray, double>

Typical

Defines an average price that is equal to (H + L + C) / 3

public static Func<DoubleArray, double> Typical { get; }

Property Value

Func<DoubleArray, double>

Volume

Gets a selector that selectors the Volume value

public static Func<DoubleArray, double> Volume { get; }

Property Value

Func<DoubleArray, double>

Weighted

Defines an average price that is equal to (H + L + 2*C) / 4

public static Func<DoubleArray, double> Weighted { get; }

Property Value

Func<DoubleArray, double>