Example #1
0
        public static FinancialMathResult PerformGeometricLiking(
            this IEnumerable <MonthlyReturn> allReturns)
        {
            var financialMath = new FinancialMath();

            var returnValues = allReturns.GetReturnValues();

            return(financialMath.PerformGeometricLinking(returnValues));
        }
Example #2
0
 public MonthlyReturnSeries()
 {
     _monthlyReturns = new List <MonthlyReturn>();
     _financialMath  = new FinancialMath();
 }