• 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!

Poll: for how much would you buy a book on "Getting Started with QuantLib"?

For how much would you buy a book on "Getting Started with QuantLib"?

  • For at most $10

    Votes: 18 30.0%
  • For at most $20

    Votes: 5 8.3%
  • For at most $30

    Votes: 5 8.3%
  • For at most $50

    Votes: 4 6.7%
  • I would also pay $100 if the book is really good

    Votes: 1 1.7%
  • I would not buy in any case

    Votes: 15 25.0%
  • What is QuantLib?!

    Votes: 12 20.0%

  • Total voters
    60
Hi there again,
I use my Christmas - NY vacation to write the book, so far I have 20 pages (well, there are a lot of screenshots).

Here is a good teaser (esp. for recent graduates that are looking for quant-developer jobs).
Find the yield of a German zerobond issued on October, 2 2014 and maturing on October, 2 2016.
Face amount is €100, the bond was issued at €97.5

Seems to be trivial? Have a look at code attached. :)
BTW, the solution from QuantLib is r = 0.012788
 

Attachments

  • Teaser1QLbook.cpp
    991 bytes · Views: 91
One more teaser: QuantLib :: Date represented in VS-Debugger in a readable way :)
readableDateRepresentationGIF.gif
 
Hi there again,
I use my Christmas - NY vacation to write the book, so far I have 20 pages (well, there are a lot of screenshots).

Here is a good teaser (esp. for recent graduates that are looking for quant-developer jobs).
Find the yield of a German zerobond issued on October, 2 2014 and maturing on October, 2 2016.
Face amount is €100, the bond was issued at €97.5

Seems to be trivial? Have a look at code attached. :)
BTW, the solution from QuantLib is r = 0.012788

It is nice. Check this line though (spelling): Real faceAmout = 100;
 
It is nice. Check this line though (spelling): Real faceAmout = 100;
Thanks!
Here is the second part of the code: a "manual" verification of the results

//and check the results manually
double yearFraction2014 = (Date(31, December, 2014) - Date(7, October, 2014) + 1);
yearFraction2014 /= 365;
double yearFraction2016 = (Date(4, October, 2016) - Date(1, January, 2016));
yearFraction2016 /= 366;
double t = yearFraction2014 + 1.0 + yearFraction2016;

double tDC = dayCounter.yearFraction(Date(7, October, 2014), Date(4, October, 2016));
assert(abs(t - tDC) < accuracy);
double yield2 = exp((log(redemption) - log(cleanPrice)) / t) - 1;
std::cout << "yield from manual check " << yield2 << "\n";
 
I don't mind giving ~100$ for hardbacks, but for E-books i'm getting a little cheap, and i don't want to give over 15$.
 
In attachment there is a solution to the 1st exercise in Post #16 (for which we actually even do not need QuantLib).
Simple?! I will soon publish the solution to the 2nd exercise ;)
 

Attachments

  • code3_1.cpp
    1.2 KB · Views: 26
As promised, a solution for the 2nd exercise (with some hints from Doxygen).

...And guys, to be true I do not understand the lack of your interest to my code snippets (just a few downloads).
And this in spite of the fact that many of you complete The "C++ Programming for Financial Engineering" Online Certificate!
I don't believe that you do not want to learn how to apply your knowledge in practice :)
But then, what's the problem?!
 

Attachments

  • 1png - class_quant_lib_1_1_yield_term_structure__inherit__graph_org.png
    1png - class_quant_lib_1_1_yield_term_structure__inherit__graph_org.png
    46 KB · Views: 50
  • 2png-class_quant_lib_1_1_fitted_bond_discount_curve_1_1_fitting_method__inherit__graph.png
    2png-class_quant_lib_1_1_fitted_bond_discount_curve_1_1_fitting_method__inherit__graph.png
    16.7 KB · Views: 41
  • 3png-class_quant_lib_1_1_piecewise_yield_curve__coll__graph_org.png
    3png-class_quant_lib_1_1_piecewise_yield_curve__coll__graph_org.png
    15.4 KB · Views: 35
  • code3_2.cpp
    5.8 KB · Views: 24
Time is scarce I suppose, so MFE students might have other priorities like C++11.

They might be beta testers and that should not be so. They want a finished product I reckon.

===
Do you already know the TOC of your book?
 
Last edited:
>Time is scarce...
Yes, it is. As I was a student, I also sometimes needed to learn what brings Credit Points.

I wonder how many would do C++ Programing for Financial Engineering Online Certificate
if it were not Approved for 15 CPE credit hours by GARP :)

>Do you already know the TOC of your book?
Not yet.
I neither set any deadlines to myself, I just write (almost) everytime when I have opportunity to do it.
But I will more or less adhere to the plan I sketched in #15

P.S.
I have updated code3_2.cpp in #28.
a. BugFix: first (fractional) coupon is now taken into account by PV calculation
b. I show how the same calculation may be done by means of DiscountingBondEngine
 
I wonder how many would do C++ Programing for Financial Engineering Online Certificate if it were not Approved for 15 CPE credit hours by GARP :)
Every single one that has been enrolled so far. :)
I'm pretty sure there are easier ways to get GARP CPE credits.
The 15 CPE credits is a great recognition by GARP that just happened few weeks ago. Our course started in Sept 2011 and a vast majority of the students took it to join MFE programs or to move to more quantitative roles.
 
>Time is scarce...
Yes, it is. As I was a student, I also sometimes needed to learn what brings Credit Points.

I wonder how many would do C++ Programing for Financial Engineering Online Certificate
if it were not Approved for 15 CPE credit hours by GARP :)

>Do you already know the TOC of your book?
Not yet.
I neither set any deadlines to myself, I just write (almost) everytime when I have opportunity to do it.
But I will more or less adhere to the plan I sketched in #15

P.S.
I have updated code3_2.cpp in #28.
a. BugFix: first (fractional) coupon is now taken into account by PV calculation
b. I show how the same calculation may be done by means of DiscountingBondEngine

Well, you can wonder. Truth is, as Andy says the course started in 2011.
And I don't see what it has to do with your upcoming book.

It's nice to get recognition from GARP. Thank you.
 
And I don't see what it has to do with your upcoming book.
Nothing directly. But indirectly I would expect that those who have completed the course would be eager to get the first hands-on experience with real-life problems and real-life library.

P.S.
Wondering whether 15 CPE credit hours by GARP is crucial I in no way doubted the quality of the course.
Just marketing, if I see that this factor is crucial, I will likely try to make use of it, e.g. by sending free copies to professors that lecture on computational finance.
 
Nothing directly. But indirectly I would expect that those who have completed the course would be eager to get the first hands-on experience with real-life problems and real-life library.

P.S.
Wondering whether 15 CPE credit hours by GARP is crucial I in no way doubted the quality of the course.
Just marketing, if I see that this factor is crucial, I will likely try to make use of it, e.g. by sending free copies to professors that lecture on computational finance.

You should also consider practitioners.
 
So guys, since firstly there was not too much [ready-to-pay] interest in the book and secondly I have little time to write it. So I decided to put the notes on my webpage (http://www.yetanotherquant.com)

Source code is available too, except the debugger-friendly version of QuantLib:Date.
Those, who wanna get is as well, should spend me 10 USD ;)
 
Last edited:
I think anyone interested in a quant dev job should work on their knowledge of algorithms/data structures, performance issues in the language of choice (whether it be C++, Python,..), and interview questions. Time is the most precious resource. I'm not sure where a book on learning Quantlib fits in this. Interviewers don't seem to really care about the amount of financial knowledge for entry-level positions, and an experienced hire will be beyond this guide or have developed skills in another direction that have a far bigger payoff.
 
I think anyone interested in a quant dev job should work on their knowledge of algorithms/data structures, performance issues in the language of choice (whether it be C++, Python,..), and interview questions. Time is the most precious resource. I'm not sure where a book on learning Quantlib fits in this.
Surely it fits.
One can (and should) read about algorithms/data structures but real learning comes by doing.
QuantLib provides an excellent opportunity to play with the implementation by profis.
The only problem: entry barrier is prohibitively high, even the library compilation is a non-trivial task (=>no go, since "Time is the most precious resource").
My book (even current abridged notes) can mitigate this problem.

Interviewers don't seem to really care about the amount of financial knowledge for entry-level positions.
They do!
At least I, with no work permit and (by that time) limited German, would never get a job in Germany, if not demonstrated programming skills and a passionate interest in finance.
 
Surely it fits.
One can (and should) read about algorithms/data structures but real learning comes by doing.
QuantLib provides an excellent opportunity to play with the implementation by profis.
The only problem: entry barrier is prohibitively high, even the library compilation is a non-trivial task (=>no go, since "Time is the most precious resource").
My book (even current abridged notes) can mitigate this problem.


They do!
At least I, with no work permit and (by that time) limited German, would never get a job in Germany, if not demonstrated programming skills and a passionate interest in finance.
Sadly, after all the hullabaloo the book has not seen the light of day.

Maybe a book on 'how to make time'?
 
Back
Top