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 > BidClose [get]
 Gets a selector that selectes the Bid close price More...
 
static Func< IBaseData, decimal > BidOpen [get]
 Gets a selector that selectes the Bid open price More...
 
static Func< IBaseData, decimal > BidLow [get]
 Gets a selector that selectes the Bid low price More...
 
static Func< IBaseData, decimal > BidHigh [get]
 Gets a selector that selectes the Bid high price More...
 
static Func< IBaseData, decimal > AskClose [get]
 Gets a selector that selectes the Ask close price More...
 
static Func< IBaseData, decimal > AskOpen [get]
 Gets a selector that selectes the Ask open price More...
 
static Func< IBaseData, decimal > AskLow [get]
 Gets a selector that selectes the Ask low price More...
 
static Func< IBaseData, decimal > AskHigh [get]
 Gets a selector that selectes the Ask high price More...
 
static Func< IBaseData, decimal > AskPrice [get]
 Gets a selector that selectes the Ask price More...
 
static Func< IBaseData, decimal > BidPrice [get]
 Gets a selector that selectes the Bid price More...
 
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

◆ BidClose

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

Gets a selector that selectes the Bid close price

Definition at line 51 of file Field.cs.

◆ BidOpen

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

Gets a selector that selectes the Bid open price

Definition at line 59 of file Field.cs.

◆ BidLow

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

Gets a selector that selectes the Bid low price

Definition at line 67 of file Field.cs.

◆ BidHigh

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

Gets a selector that selectes the Bid high price

Definition at line 75 of file Field.cs.

◆ AskClose

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

Gets a selector that selectes the Ask close price

Definition at line 83 of file Field.cs.

◆ AskOpen

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

Gets a selector that selectes the Ask open price

Definition at line 91 of file Field.cs.

◆ AskLow

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

Gets a selector that selectes the Ask low price

Definition at line 99 of file Field.cs.

◆ AskHigh

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

Gets a selector that selectes the Ask high price

Definition at line 107 of file Field.cs.

◆ AskPrice

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

Gets a selector that selectes the Ask price

Definition at line 115 of file Field.cs.

◆ BidPrice

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

Gets a selector that selectes the Bid price

Definition at line 123 of file Field.cs.

◆ Open

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

Gets a selector that selects the Open value

Definition at line 131 of file Field.cs.

◆ High

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

Gets a selector that selects the High value

Definition at line 139 of file Field.cs.

◆ Low

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

Gets a selector that selects the Low value

Definition at line 147 of file Field.cs.

◆ Close

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

Gets a selector that selects the Close value

Definition at line 155 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 163 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 171 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 179 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 187 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 195 of file Field.cs.

◆ Volume

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

Gets a selector that selectors the Volume value

Definition at line 203 of file Field.cs.


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