Files
marketdata/MarketDataLib/Generator/Momentum/BacktestResult.cs
2024-02-22 14:52:53 -05:00

18 lines
316 B
C#

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;}
}
}