Package com.longbridge.fundamental
Class ForecastEpsItem
- java.lang.Object
-
- com.longbridge.fundamental.ForecastEpsItem
-
public class ForecastEpsItem extends Object
One EPS forecast snapshot covering a specific forecast window.
-
-
Field Summary
Fields Modifier and Type Field Description OffsetDateTimeforecastEndDateForecast window end.BigDecimalforecastEpsHighestHighest EPS estimate.BigDecimalforecastEpsLowestLowest EPS estimate.BigDecimalforecastEpsMeanMean EPS estimate.BigDecimalforecastEpsMedianMedian EPS estimate.OffsetDateTimeforecastStartDateForecast window start.intinstitutionDownNumber of institutions that lowered their estimate.intinstitutionTotalTotal number of forecasting institutions.intinstitutionUpNumber of institutions that raised their estimate.
-
Constructor Summary
Constructors Constructor Description ForecastEpsItem()
-
-
-
Field Detail
-
forecastEpsMedian
public BigDecimal forecastEpsMedian
Median EPS estimate.
-
forecastEpsMean
public BigDecimal forecastEpsMean
Mean EPS estimate.
-
forecastEpsLowest
public BigDecimal forecastEpsLowest
Lowest EPS estimate.
-
forecastEpsHighest
public BigDecimal forecastEpsHighest
Highest EPS estimate.
-
institutionTotal
public int institutionTotal
Total number of forecasting institutions.
-
institutionUp
public int institutionUp
Number of institutions that raised their estimate.
-
institutionDown
public int institutionDown
Number of institutions that lowered their estimate.
-
forecastStartDate
public OffsetDateTime forecastStartDate
Forecast window start.
-
forecastEndDate
public OffsetDateTime forecastEndDate
Forecast window end.
-
-