https://github.com/fadeev/valuation
Tools for Project Analysis and Valuation.
https://github.com/fadeev/valuation
finance javascript project-management realoptions
Last synced: about 1 year ago
JSON representation
Tools for Project Analysis and Valuation.
- Host: GitHub
- URL: https://github.com/fadeev/valuation
- Owner: fadeev
- Created: 2019-01-25T06:19:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T12:41:48.000Z (over 7 years ago)
- Last Synced: 2025-02-15T19:54:29.255Z (over 1 year ago)
- Topics: finance, javascript, project-management, realoptions
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tools for Project Analysis and Valuation
Functions for evaluating projects using DCF-based (discounted cash flow) methods. Currently, Datar–Mathews method (DMM) and fuzzy pay-off method (FPOM) are implemented.
This is work in progress and almost everything is subject to change.
Cashflow is modeled as an array of cashflow objects with possibly distinct discount rate values.
```
const cashflow = [
{
optimistic: [0, 268, 314],
default: [0, 104, 122],
pessimistic: [0, 20, 22],
discount: 0.15
},
{
default: [-15, 0, -325],
discount: 0.05
}
]
```
## Installing
```
npm install
```
## Building
```
npm run build
```
## Testing
```
npm run test
```