Optimizations for CMTrend
This commit is contained in:
58
MarketData/MarketDataLib/MarketDataModel/FundamentalV2.cs
Normal file
58
MarketData/MarketDataLib/MarketDataModel/FundamentalV2.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user