Class AutoFilter.AutoFilterResults
- Namespace
- Balsam.FactorAnalysis
- Assembly
- Balsam.Backtester.dll
Encapsulates auto filter results.
public class AutoFilter.AutoFilterResults : IEnumerable<AutoFilter.Result>, IEnumerable
- Inheritance
-
AutoFilter.AutoFilterResults
- Implements
- Inherited Members
- Extension Methods
Properties
BestResult
Gets the best result.
public AutoFilter.Result BestResult { get; }
Property Value
Count
Gets the number of items in the collection.
public int Count { get; }
Property Value
MaxObj
Gets the maximum objective.
public double MaxObj { get; }
Property Value
Methods
Add(Result)
Adds the specified result to the collection.
public void Add(AutoFilter.Result result)
Parameters
result
AutoFilter.Result
EarlyStop()
When called, no more results are accepted.
public void EarlyStop()
GetEnumerator()
Returns an enumerator to iterate through the collection.
public IEnumerator<AutoFilter.Result> GetEnumerator()
Returns
GetTop(int)
Gets the top n scoring results.
public IEnumerable<AutoFilter.Result> GetTop(int n)
Parameters
n
int