Financial Numerical Recipes in C++



Download free course Financial Numerical Recipes in C++, pdf file on 264 pages by Bernt Arne Ødegaard.
This book is a a discussion of the calculation of specific formulas in finance. The field of finance has seen a rapid development in recent years, with increasing mathematical sophistication. While the formalization of the field can be traced back to the work of Markowitz (1952) on investors mean-variance decisions and Modigliani and Miller (1958) on the capital structure problem, it was the solution for the price of a call option by Black and Scholes (1973); Merton (1973) which really was the starting point for the mathematicalization of finance. The fields of derivatives and fixed income have since then been the main fields where complicated formulas are used. This book is intended to be of use for people who want to both understand and use these formulas, which explains why most of the algorithms presented later are derivatives prices.

This project started when I was teaching a course in derivatives at the University of British Columbia, in the course of which I sat down and wrote code for calculating the formulas I was teaching. I have always found that implementation helps understanding these things. For teaching such complicated material it is often useful to actually look at the implementation of how the calculation is done in practice. The purpose of the book is therefore primarily pedagogical, although I believe all the routines presented are correct and reasonably efficient, and I know they are also used by people to price real options.

To implement the algorithms in a computer language I choose C++. My students keep asking why anybody would want to use such a backwoods computer language, they think a spreadsheet can solve all the worlds problems. I have some experience with alternative systems for computing, and no matter what, in the end you end up being frustrated with higher end "languages", such as Matlab og R (Not to mention the straitjacket which is is a spreadsheet.) and going back to implementation in a standard language. In my experience with empirical finance I have come to realize that nothing beats knowledge a real computer language. This used to be FORTRAN, then C, and now it is C++. All example algorithms are therefore coded in C++. I do acknowledge that matrix tools like Matlab are very good for rapid prototyping and compact calculations, and will in addition to C++ in places also illustrate the use of Matlab, as well as other (public domain) tools.

Table of contents

  • On C++ and programming
  • Matrix Tools
  • The value of time
  • Bond Pricing with a flat term structure
  • The term structure of interest rates and an object lesson
  • The Mean Variance Frontier
  • Futures algoritms
  • Binomial option pricing
  • Basic Option Pricing, the Black Scholes formula
  • Warrants
  • Extending the Black Scholes formula
  • Option pricing with binomial approximations
  • Finite Differences
  • Option pricing by simulation
  • Pricing American Options - Approximations
  • Average, lookback and other exotic options
  • Generic binomial pricing
  • Trinomial trees
  • Alternatives to the Black Scholes type option formula
  • Pricing of bond options, basic models
  • Credit risk
  • Term Structure Models
  • Binomial Term Structure models
  • Interest rate trees
  • Building term structure trees using the Ho and Lee (1986) approach
  • Term Structure Derivatives
  • Date (and time) revisited - the BOOST libraries
Pages : 264
Size : 1.4 MB
File type : PDF
Downloads: 132
Created: 2022-02-02
License: Open Publication License
Author(s): Bernt Arne Ødegaard
Financial Numerical Recipes in C++

Warning: Trying to access array offset on false in /home/tutovnfz/public_html/article.php on line 233

Others c++ Tutorials

C++ Hacker's Guide

C++ programming tutorial for professionals

Structured programming with C++

How To Think Like A Computer Scientist: C++ Version

C++ Notes for Professionals

Others related eBooks about Financial Numerical Recipes in C++

How To Make Video Games

Learn How To Make Video Games, This ebook shows you everything you need to know to make video games....

VB.NET for beginners

This document is a VB.NET training tutorial for beginners who wants to learn the dot net platform with Visual Basic ,it's a free courses in PDF under 243 pages for download....

Graph Theory - Advanced Algorithms and Applications

This book is prepared as a combination of the manuscripts submitted by respected mathematicians and scientists around the world. As an editor, The author truly enjoyed reading each manuscript. Not only will the methods and explanations help you to understand more about graph theory, but The author a...

IPython Interactive Computing and Visualization Cookbook

This book contains many ready-to-use, focused recipes for high-performance scientific computing and data analysis, from the latest IPython/Jupyter features to the most advanced tricks, to help you write better and faster code. You will apply these state-of-the-art methods to various real-world examp...

Modeling and Simulation in Python

This book is an introduction to physical modeling using a computational approach. It is organized in three parts:...

JavaScript for impatient programmers

Download free course JavaScript for impatient programmers, pdf file on 526 pages by Axel Rauschmayer....

VBA Notes for Professionals

Download free course VBA Notes for Professionals, pdf file on 202 pages by Stack Overflow Community....

Programming Fundamentals: A Modular Structured Approach Using C++

This book is an introduction to computer programming using C++ as the language for writing programmes, and to solid, fundamental programming principles - including writing structured programmes, looping, data structures and iteration. ...

C++ Pointers and Memory

This document explains how pointers and memory work and how to use them—from the basic concepts through all the major programming techniques. For each topic there is a combination of discussion, sample C code, and drawings....

Think Java, 2nd Edition

Think Java is a hands-on introduction to computer science and programming used by many uni..., download free Java tutorial in PDF (326 pages) created by ....