Show / Hide Table of Contents

Class OptimizerResult

Container to store parameters and fitness of a single optimiation iteration.

Inheritance
object
OptimizerResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: TuringTrader.Optimizer
Assembly: TuringTrader.Simulator.dll
Syntax
public class OptimizerResult

Fields

| Edit this page View Source

Parameters

Parameter values for this iteration.

Declaration
public Dictionary<string, int> Parameters
Field Value
Type Description
Dictionary<string, int>

Properties

| Edit this page View Source

Fitness

Fitness value at end of this iteration.

Declaration
public double? Fitness { get; set; }
Property Value
Type Description
double?
| Edit this page View Source

MaxDrawdown

Maximum drawdown over the course of this iteration.

Declaration
public double? MaxDrawdown { get; set; }
Property Value
Type Description
double?
| Edit this page View Source

NetAssetValue

Net asset value at end of this iteration.

Declaration
public double? NetAssetValue { get; set; }
Property Value
Type Description
double?
| Edit this page View Source

ParametersAsString

Parameter values for this iteration, as string.

Declaration
public string ParametersAsString { get; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Copyright © 2011-2023, Bertram Enterprises LLC dba TuringTrader.com