Add BetaCalc24. Fix some bugs

This commit is contained in:
2025-05-08 12:39:32 -04:00
parent 45f756e131
commit fbd3a081e0
5 changed files with 51 additions and 19 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; }