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
Close
Gets a selector that selects the Close value
public static Func<DoubleArray, double> Close { get; }
Property Value
High
Gets a selector that selects the High value
public static Func<DoubleArray, double> High { get; }
Property Value
Low
Gets a selector that selects the Low value
public static Func<DoubleArray, double> Low { get; }
Property Value
Median
Defines an average price that is equal to (H + L) / 2
public static Func<DoubleArray, double> Median { get; }
Property Value
Open
Gets a selector that selects the Open value
public static Func<DoubleArray, double> Open { get; }
Property Value
SevenBar
Defines an average price that is equal to (2O + H + L + 3C)/7
public static Func<DoubleArray, double> SevenBar { get; }
Property Value
Typical
Defines an average price that is equal to (H + L + C) / 3
public static Func<DoubleArray, double> Typical { get; }
Property Value
Volume
Gets a selector that selectors the Volume value
public static Func<DoubleArray, double> Volume { get; }
Property Value
Weighted
Defines an average price that is equal to (H + L + 2*C) / 4
public static Func<DoubleArray, double> Weighted { get; }