Search Framework:
StrategyEvolverResults
Namespace: WealthLab.Backtest
Parent: object

Represents the complete set of results produced by a Strategy Evolver run. It contains the results from the current Evolver run as well as the results recorded for completed Apex Strategy runs.

Methods
RecordApexResults
public void RecordApexResults()

Records the current Results as a completed Apex Strategy result set. The method creates a new StrategyEvolverResultList, copies all entries from Results into it, adds the new list to ApexResults, and then clears Results. This allows the Strategy Evolver to preserve the results of each Apex Strategy run while reusing Results for the next run.



Properties
ApexResults
public List<StrategyEvolverResultList> ApexResults

Returns a List<StrategyEvolverResultList> containing the results of each completed Apex Strategy run. Each item in the list represents the complete set of Evolver results that existed when that Apex Strategy run was recorded.


Results
public StrategyEvolverResultList Results

Returns the StrategyEvolverResultList containing the results of the current, most recent Strategy Evolver run. When an Apex Strategy run is completed and recorded, the contents of this list are copied into ApexResults and Results is cleared.