Table of Contents

Class SimulationResult

Namespace
Balsam
Assembly
Balsam.Backtester.dll

Encapsulates simulation results.

[ProtoContract]
public class SimulationResult
Inheritance
SimulationResult
Inherited Members
Extension Methods

Properties

DataStore

Gets/sets the DataStore from a strategy simulation.

[ProtoMember(3)]
public DataStore DataStore { get; set; }

Property Value

DataStore

Error

Gets/sets an error message if any.

[ProtoMember(7)]
public string Error { get; set; }

Property Value

string

Messages

Gets/sets any messages received during the simulation.

[ProtoMember(6)]
public string Messages { get; set; }

Property Value

string

OptimizationResults

Gets/sets optimization results.

[ProtoMember(4)]
public TradeStatsCollection OptimizationResults { get; set; }

Property Value

TradeStatsCollection

Runtime

Gets/sets the runtime.

[ProtoMember(5)]
public TimeSpan Runtime { get; set; }

Property Value

TimeSpan

Status

Gets/sets the status

[ProtoMember(1)]
public SimulationStatus Status { get; set; }

Property Value

SimulationStatus

TradeStats

Gets/sets the TradeStats from a money management simulation.

[ProtoMember(2)]
public TradeStats TradeStats { get; set; }

Property Value

TradeStats