Lean  $LEAN_TAG$
QuantConnect.Field Class Reference

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

Properties

static Func< IBaseData, decimal > Open [get]
 Gets a selector that selects the Open value More...
 
static Func< IBaseData, decimal > High [get]
 Gets a selector that selects the High value More...
 
static Func< IBaseData, decimal > Low [get]
 Gets a selector that selects the Low value More...
 
static Func< IBaseData, decimal > Close [get]
 Gets a selector that selects the Close value More...
 
static Func< IBaseData, decimal > Average [get]
 Defines an average price that is equal to (O + H + L + C) / 4 More...
 
static Func< IBaseData, decimal > Median [get]
 Defines an average price that is equal to (H + L) / 2 More...
 
static Func< IBaseData, decimal > Typical [get]
 Defines an average price that is equal to (H + L + C) / 3 More...
 
static Func< IBaseData, decimal > Weighted [get]
 Defines an average price that is equal to (H + L + 2*C) / 4 More...
 
static Func< IBaseData, decimal > SevenBar [get]
 Defines an average price that is equal to (2*O + H + L + 3*C)/7 More...
 
static Func< IBaseData, decimal >? Volume [get]
 Gets a selector that selectors the Volume value More...
 

Detailed Description

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

Definition at line 25 of file Field.cs.

Property Documentation

◆ Open

Func<IBaseData, decimal> QuantConnect.Field.Open
staticget

Gets a selector that selects the Open value

Definition at line 31 of file Field.cs.

◆ High

Func<IBaseData, decimal> QuantConnect.Field.High
staticget

Gets a selector that selects the High value

Definition at line 39 of file Field.cs.

◆ Low

Func<IBaseData, decimal> QuantConnect.Field.Low
staticget

Gets a selector that selects the Low value

Definition at line 47 of file Field.cs.

◆ Close

Func<IBaseData, decimal> QuantConnect.Field.Close
staticget

Gets a selector that selects the Close value

Definition at line 55 of file Field.cs.

◆ Average

Func<IBaseData, decimal> QuantConnect.Field.Average
staticget

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

Definition at line 63 of file Field.cs.

◆ Median

Func<IBaseData, decimal> QuantConnect.Field.Median
staticget

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

Definition at line 71 of file Field.cs.

◆ Typical

Func<IBaseData, decimal> QuantConnect.Field.Typical
staticget

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

Definition at line 79 of file Field.cs.

◆ Weighted

Func<IBaseData, decimal> QuantConnect.Field.Weighted
staticget

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

Definition at line 87 of file Field.cs.

◆ SevenBar

Func<IBaseData, decimal> QuantConnect.Field.SevenBar
staticget

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

Definition at line 95 of file Field.cs.

◆ Volume

Func<IBaseData, decimal>? QuantConnect.Field.Volume
staticget

Gets a selector that selectors the Volume value

Definition at line 103 of file Field.cs.


The documentation for this class was generated from the following file: