Class FactorResults
- Namespace
- Balsam.FactorAnalysis
- Assembly
- Balsam.Backtester.dll
Encapsulates results generated by the FactorAnalyzer.
public class FactorResults : IEnumerable<FactorResult>, IEnumerable
- Inheritance
-
FactorResults
- Implements
- Inherited Members
- Extension Methods
Constructors
FactorResults(int)
Instantiates a new object with the specified number of bins.
public FactorResults(int bins)
Parameters
bins
int
Fields
DefaultSignificanceLevel
The default significant level for reports.
public static readonly double DefaultSignificanceLevel
Field Value
Properties
Bins
Gets the number of bins used in the analysis.
public int Bins { get; }
Property Value
Count
Gets the number of factor results.
public int Count { get; }
Property Value
Description
Gets/sets a description.
public string Description { get; set; }
Property Value
this[int]
Gets the factor result at the specified index.
public FactorResult this[int index] { get; }
Parameters
index
int
Property Value
SignificanceLevel
Gets/sets the significance level used for reporting.
public double SignificanceLevel { get; set; }
Property Value
Methods
Add(FactorResult)
Adds the specified factor result to the collection.
public void Add(FactorResult factor)
Parameters
factor
FactorResult
GetEnumerator()
Returns an enumerator to iterate through the collection.
public IEnumerator<FactorResult> GetEnumerator()