Derivatives Pricing Engine
npm install derivxbash
`
##### Python:
`bash
pip install derivx
`
##### JavaScript:
`bash
npm install derivx
`
$3
##### C++:
`c++
`
##### Python:
`python
import derivx
print(derivx.Version())
`
For more usages please refer to examples in derivx_py folder.
DerivX is not dependent on numpy, pandas and matplotlib, but if you want to run examples, you'd better install them with:
`bash
pip install numpy pandas matplotlib
`
##### JavaScript:
`javascript
const derivx = require('derivx')
console.log(derivx.Version())
`
For more usages please refer to examples in derivx_js folder.
DerivX is not dependent on numjs, but if you want to run examples, you'd better install it with:
`bash
npm install git+https://github.com/nicolaspanel/numjs.git
``