Skip to content

Library of helper methods for rating insurance policies

License

Notifications You must be signed in to change notification settings

wesleygrimes/rating-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rating Utils for Node.js

Build Status Coverage Status

Library of helper methods for rating insurance policies

Features

  • Prorata utilities to get prorate factor, and calculate net change premium
  • Many more features to come, just getting started

Installation

npm install rating-utils

Usage

var rating = require('rating-utils'),
    prorata = rating.prorata;

//full term endorsement
var result = prorata.getProrateFactor('2015-01-01', '2015-12-31'); //result should be 1

//mid term endorsement
var result2 = prorata.getProrateFactor('2015-01-01', '2015-06-30'); //result should be approx .5

//calculate net change premium of mid-term endorsement
var newFullTermAmount = 100;
var prevFullTermAmount = 0;
var policyEffectiveDate = '2015-01-01';
var revisionEffectiveDate = '2015-06-30';
var netchange = prorata.getNetChangeAmount(newFullTermAmount, prevFullTermAmount, policyEffectiveDate, revisionEffectiveDate);

Tests

npm test

Contributing

All our welcome to join in the fun.

About

Library of helper methods for rating insurance policies

Resources

License

Stars

Watchers

Forks

Packages

No packages published