using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MarketData.Generator.Momentum { public class BacktestResult { public BacktestResult() { } public double CashBalance{get;set;} public bool Success{get;set;} } }