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
Error
Gets/sets an error message if any.
[ProtoMember(7)]
public string Error { get; set; }
Property Value
Messages
Gets/sets any messages received during the simulation.
[ProtoMember(6)]
public string Messages { get; set; }
Property Value
OptimizationResults
Gets/sets optimization results.
[ProtoMember(4)]
public TradeStatsCollection OptimizationResults { get; set; }
Property Value
Runtime
Gets/sets the runtime.
[ProtoMember(5)]
public TimeSpan Runtime { get; set; }
Property Value
Status
Gets/sets the status
[ProtoMember(1)]
public SimulationStatus Status { get; set; }
Property Value
TradeStats
Gets/sets the TradeStats from a money management simulation.
[ProtoMember(2)]
public TradeStats TradeStats { get; set; }