Skip to content

harshhacks/quantparadise

Repository files navigation

Quant Paradise

GitHub issues GitHub GitHub last commit Build Status codecov

Documentation Status

What is it?

Open Source tool to calibrate spot rates and swap rates using the Vasicek and CIR models. Link to the Repo is here Looking to create a utility/tool to assist Portfolio Managers in data aquisition and modeling. Currently plan to create a data acquisition tool to obtain data from popular platforms(preferably Yahoo Finance), and use the CIR and Vasicek models for modeling interest rates and zero-coupon bond prices over different time horizons and calibrate them. Will also provide graphing modules using pre-existing open source tools to analyze the models and generate mock portfolios and calculate and plot the relevant metrics.

Examples/Demonstration:

The below images show a few images screenshot from our Jupyter file which demonstrate how to use the library. First, we need to initialize the values of the LIBOR rates and Swap rates for any two dates. In the future, these can be read using a CSV file, but for now, we initialize them as numpy arrays below. Each array is comprised of lists.

For LIBOR rates, the first value of each list represents the time period. For instance, 1/12 would represent the 1 month rate, 12/12 would represent the 1 year rate and so on. The second value represents the value of that interest rate on the first date, and the third value represents the value of the interest rate for the second date.

For SWAP rates, the first value represents the duration of the swap rate. The other two values are used in the same way as the LIBOR rates.

alt text

The image below shows interpolation of rates between the two dates. For this example, we calibrate on half-day periods but these can be adjusted according to need and precision.

alt text

Below we show examples of the graphs obtained for the Vasicek and CIR calibrations for the two dates we picked: alt text alt text

Finally, we show a graph showing the price of a zero coupon bond using the above calibration. alt text