Table of Contents

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

AutoFilter.Result

Count

Gets the number of items in the collection.

public int Count { get; }

Property Value

int

MaxObj

Gets the maximum objective.

public double MaxObj { get; }

Property Value

double

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

IEnumerator<AutoFilter.Result>

GetTop(int)

Gets the top n scoring results.

public IEnumerable<AutoFilter.Result> GetTop(int n)

Parameters

n int

Returns

IEnumerable<AutoFilter.Result>