Optimizations for CMTrend

This commit is contained in:
2025-04-21 18:03:07 -04:00
parent 53e84e765c
commit 14bd7651ca
9 changed files with 302 additions and 34 deletions

View File

@@ -0,0 +1,58 @@
using System;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Text;
using MarketData.Utils;
namespace MarketData.MarketDataModel
{
public class FundamentalsV2 : Dictionary<String,FundamentalV2>
{
public FundamentalsV2()
{
}
}
public class FundamentalV2
{
private String symbol;
private DateTime asOf;
private double marketCap;
private double pe;
private double ebitda;
private double revenuePerShare;
public FundamentalV2()
{
}
public String Symbol
{
get { return symbol; }
set { symbol = value; }
}
public DateTime AsOf
{
get { return asOf; }
set { asOf = value; }
}
public double MarketCap
{
get { return marketCap; }
set { marketCap = value; }
}
public double PE
{
get { return pe; }
set { pe = value; }
}
public double RevenuePerShare
{
get { return revenuePerShare; }
set { revenuePerShare = value; }
}
public double EBITDA
{
get { return ebitda; }
set { ebitda = value; }
}
}
}