• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

The basics of ARCH / GARCH

Russell Davidson has written an econometrics software package in C++, called Ects.
Take a look (the link to the source code around the bottom): http://russell-davidson.arts.mcgill.ca/ects4/

If we take GARCH(1,1) I think we need C++ modules for the following use cases:

1. Parameter estimation (ML, BHHH).
2. Validating the parameters/goodness of fit (e.g. qq, Ljung-Box)
3. Forecasting vol
4. Use in e.g. option pricer.

It is hard to say how much coding this would be in C++ (rough wild guess 2KLOC). Probably a lot can be used from Boost, Eigen, Alglib etc.
 
Last edited:
Back
Top