Add CMTRend

This commit is contained in:
2025-04-08 19:25:43 -04:00
parent eec147b974
commit 70340bdd25
18 changed files with 3671 additions and 26 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace MarketData.Generator.CMTrend
{
public class CMTTrendModelResult
{
public CMTTrendModelResult()
{
}
public double CashBalance { get; set; }
public bool Success { get; set; }
public String Message { get; set; }
}
}