Пример #1
0
 /**
  * @return string
  */
 public function getApproxBondYTM()
 {
     // we need to calculate the coupon payment C = F*(c/payment frequency)
     $couponPayment = MathFuncs::mul($this->bondFaceValue, MathFuncs::div($this->bondAnnualCouponRate, $this->bondPaymentFrequency));
     // we use a formula to approximate the YTM = (C+(F-P)/n)/((F+P)/2)
     $approxYTM = MathFuncs::div(MathFuncs::add($couponPayment, MathFuncs::div(MathFuncs::sub($this->bondFaceValue, $this->bondMarketValue), $this->getBondNoOfPayments())), MathFuncs::div(MathFuncs::add($this->bondFaceValue, $this->bondMarketValue), 2));
     return $approxYTM;
 }
Пример #2
0
 /**
  * @return string
  */
 public function getBondFairValue()
 {
     // we need to get the coupon rate per payment period = c/payment frequency
     $couponRateForPeriod = MathFuncs::div($this->bondAnnualCouponRate, $this->bondPaymentFrequency);
     // similarly, we need to calculate the VIR per payment period = i/payment frequency
     $VIRForPeriod = MathFuncs::div($this->bondVIR, $this->bondPaymentFrequency);
     // we also save the bond's number of payments to an auxillary variable
     $bondNoOfPayments = $this->getBondNoOfPayments();
     // next, we also need the present value of the unit annuity pertaining to the bond, in arrears
     $PVofUnitBondAnnuity = MathFuncs::div(MathFuncs::sub(1, Mathfuncs::pow(MathFuncs::div(1, MathFuncs::add(1, $VIRForPeriod)), $bondNoOfPayments)), $VIRForPeriod);
     // now we can use the formula to calculate the real value of the bond (i.e., the present value of its payments)
     // PV = F*[c*PVofUnitBondAnnuity+1/((1+i)^n)]
     $fairValue = MathFuncs::mul($this->bondFaceValue, MathFuncs::add(MathFuncs::mul($couponRateForPeriod, $PVofUnitBondAnnuity), MathFuncs::div(1, MathFuncs::pow(MathFuncs::add(1, $VIRForPeriod), $bondNoOfPayments))));
     return $fairValue;
 }
 /**
  * @return string
  */
 public function getRetentionRatio()
 {
     return MathFuncs::sub(1, $this->getPayoutRatio());
 }
Пример #4
0
 public function testSub()
 {
     $this->assertEquals("3.317", MathFuncs::sub(4.685, 1.368));
 }
Пример #5
0
 /**
  * @return string [Value of a single debt repayment instance as a string]
  */
 public function getDebtSingleRepayment()
 {
     // single repayment 'K = PV/((1-v^n)/i)'
     return MathFuncs::div($this->debtPrincipal, MathFuncs::div(MathFuncs::sub(1, MathFuncs::pow($this->getDebtDiscountFactor(), $this->debtNoOfCompoundingPeriods)), $this->debtInterest));
 }
Пример #6
0
 /**
  * @param AnnuityPaymentTypes $annuityPaymentType
  * @param AnnuityValueTypes $annuityValueType
  * @return null|string
  * @throws Exception
  */
 public function getAnnuityValue(AnnuityPaymentTypes $annuityPaymentType = null, AnnuityValueTypes $annuityValueType)
 {
     // if the number of the annuity's compounding periods
     // is set to zero, we're dealing with a perpetuity
     if (Helpers::checkIfZero($this->annuityNoOfCompoundingPeriods)) {
         // we cannot calculate FV of a perpetuity, we therefore return null
         // in case such a value is demanded
         if ($annuityValueType->getValue() == AnnuityValueTypes::FUTURE_VALUE) {
             return null;
         }
         // PV of a perpetuity = K/i
         return Helpers::roundMoneyForDisplay(MathFuncs::div($this->annuitySinglePaymentAmount, $this->annuityInterest));
     }
     // when the annuity is not a perpetuity, we first need to check that
     // the $annuityPaymentType is not null
     if (Helpers::checkIfNotNull($annuityPaymentType)) {
         // discount factor 'v = 1/(1+i)'
         $discountFactor = MathFuncs::div(1, MathFuncs::add(1, $this->annuityInterest));
         if ($annuityValueType->getValue() == AnnuityValueTypes::PRESENT_VALUE) {
             // PV numerator = 1-v^n
             $numerator = MathFuncs::sub(1, MathFuncs::pow($discountFactor, $this->annuityNoOfCompoundingPeriods));
         } elseif ($annuityValueType->getValue() == AnnuityValueTypes::FUTURE_VALUE) {
             // FV numerator = (1+i)^n-1
             $numerator = MathFuncs::sub(MathFuncs::pow(MathFuncs::add(1, $this->annuityInterest), $this->annuityNoOfCompoundingPeriods), 1);
         }
         if ($annuityPaymentType->getValue() == AnnuityPaymentTypes::IN_ADVANCE) {
             // in advance denom. = 1-v
             $denominator = MathFuncs::sub(1, $discountFactor);
         } elseif ($annuityPaymentType->getValue() == AnnuityPaymentTypes::IN_ARREARS) {
             // in arrears denom. = i
             $denominator = $this->annuityInterest;
         }
         if (isset($numerator) && isset($denominator)) {
             return MathFuncs::mul(MathFuncs::div($numerator, $denominator), $this->annuitySinglePaymentAmount);
         }
     }
     return null;
 }
 /**
  * @return string
  * @throws Exception
  */
 public function getStockPresentValue()
 {
     switch ($this->dividendDiscountModelType->getValue()) {
         case StockDDMTypes::ZERO_GROWTH:
             // PV = D/i
             return MathFuncs::div($this->stockAnnualDividendsValue, $this->stockVIR);
         case StockDDMTypes::MULTIPLE_GROWTH:
             if ($this->stockAnnualDividendsGrowth === null) {
                 throw new Exception(Strings::getString('message_must_set_growth_value'));
             }
             // PV = (D*(1+g))/(i-g)
             return MathFuncs::mul($this->stockAnnualDividendsValue, MathFuncs::div(MathFuncs::add(1, $this->stockAnnualDividendsGrowth), MathFuncs::sub($this->stockVIR, $this->stockAnnualDividendsGrowth)));
     }
 }