real-estate-finance v1.1.1
Real Estate Finance Formulas/Calculations
npm install --save real-estate-finance
Functions Available
All inputs are meant to be in their specifc order listed below and all inputs are meant to be Numbers, not Strings or Floats!
annualGrossPotentialIncome refin.annualGrossPotentialIncome(expectedMonthlyRentIncome)
netOperatingIncome refin.netOperatingIncome( monthlyIncome, vacancies, nonPayments, taxes, mortgageInterest, marketing, advertising, management, legal, accounting, utilities, repairs, maintenance, acquisition, sale_costs )
grossRentalMultiplier refin.grossRentalMultiplier(marketValue, annualGrossPotentialIncome)
estimatedPropertyValueByGRM refin.estimatedPropertyValueByGRM(grossRentalMultiplier, annualIncome)
grossOperatingIncome refin.grossOperatingIncome(monthlyIncome, estimatedLossPercentage);
capitalizationRate refin.capitalizationRate( monthlyIncome, vacancies, nonPayments, taxes, marketing, advertising, management, legal, accouting, utilities, repairs, maintenance, acquisition, sale_costs, sale_earned )
estimatedPropertyValueByCapRate refin.estimatedPropertyValueByCapRate( netOperatingIncome, capitalizationRate )
- cashFlowBeforeTaxes refin.cashFlowBeforeTaxes( netOperatingIncome, interestRate, loanPrinciple, capitalExpenditures, capitalExpenditureLoans, earnedInterest )
- cashFlowAfterTaxes refin.cashFlowAfterTaxes( cashFlowBeforeTaxes, stateIncomeTax, federalIncomeTax )
- breakEvenRatio refin.breakEvenRatio( interestRate, loanPrinciple, marketing, advertising, management, legal, accounting, utilities, repairs, maintenance, grossOperatingIncome )
- returnOnEquity refin.returnOnEquity( cashFlowAfterTaxes, principleInvested )