https://github.com/goldwasserexchange/bond-calculator
Yield and price calculations for bonds
https://github.com/goldwasserexchange/bond-calculator
bond finance price yield
Last synced: 7 months ago
JSON representation
Yield and price calculations for bonds
- Host: GitHub
- URL: https://github.com/goldwasserexchange/bond-calculator
- Owner: goldwasserexchange
- License: mit
- Created: 2016-12-26T14:27:40.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T05:06:47.000Z (almost 3 years ago)
- Last Synced: 2025-03-23T23:51:26.239Z (7 months ago)
- Topics: bond, finance, price, yield
- Language: JavaScript
- Homepage:
- Size: 682 KB
- Stars: 18
- Watchers: 5
- Forks: 10
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bond calculator
[](https://badge.fury.io/js/bond-calculator)
[](https://travis-ci.org/goldwasserexchange/bond-calculator)
[](https://coveralls.io/github/goldwasserexchange/bond-calculator?branch=master)
[](https://greenkeeper.io/)
Yield and price calculations for bonds.
Gives the same results as Excel [YIELD](https://support.office.com/en-US/article/YIELD-function-F5F5CA43-C4BD-434F-8BD2-ED3C9727A4FE) and [PRICE](https://support.office.com/en-us/article/PRICE-function-3ea9deac-8dfa-436f-a7c8-17ea02c21b0a) functions.
The following day count conventions are supported:
* 30U/360
* ACTUAL/ACTUAL
* ACTUAL/360
* ACTUAL/365
* 30E/360
More info about day count conventions can be found on [Wikipedia](https://en.wikipedia.org/wiki/Day_count_convention).
## Installation
```
npm install --save bond-calculator
```
## Usage
```javascript
const bondCalculator = require('bond-calculator');
const bond = bondCalculator({
settlement: '2016-12-26',
maturity: '2023-01-17',
rate: 0.02625, // 2.625%
redemption: 100,
frequency: 2, // 1=Annual, 2=Semiannual, 4=Quarterly
convention: '30U/360',
});
// Calculate yield for a given price
const yld = bond.yield(98); // 2.98817753210426%
// Calculate price for a given yield
const price = bond.price(0.025); // 100.69785390232649
```