Add BetaCalc36,24,06 . Optimize MG

This commit is contained in:
2025-05-09 17:40:13 -04:00
parent f30d753352
commit e60d95b143
7 changed files with 517 additions and 17 deletions

View File

@@ -20,9 +20,10 @@ namespace MarketData.MarketDataModel
private double pe;
private double ebitda;
private double revenuePerShare;
private double beta;
private double betaCalc36;
private double betaCalc06;
private double beta; // 36 month beta from Yahoo Finance or FINVIZ
private double betaCalc36; // 36 month beta calculated from the Beta Generator
private double betaCalc24; // 24 month beta calculated from the Beta Generator
private double betaCalc06; // 6 month beta calculated from the Beta Generator
public FundamentalV2()
{
@@ -66,7 +67,12 @@ namespace MarketData.MarketDataModel
{
get { return betaCalc36; }
set { betaCalc36 = value; }
}
}
public double BetaCalc24
{
get { return betaCalc24; }
set { betaCalc24 = value; }
}
public double BetaCalc06
{
get { return betaCalc06; }