Financial Instrument Pricing Using C++ and over one million other books are available for Amazon Kindle. Learn more

Buy New

or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
Buy Used
Used - Good See details
$40.99 & this item ships for FREE with Super Saver Shipping. Details

or
Sign in to turn on 1-Click ordering.
 
   
Kindle Edition
 
   
More Buying Choices
Have one to sell? Sell yours here
Financial Instrument Pricing Using C++ (The Wiley Finance Series)
 
 
Start reading Financial Instrument Pricing Using C++ on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Financial Instrument Pricing Using C++ (The Wiley Finance Series) [Hardcover]

Daniel J. Duffy (Author)
3.3 out of 5 stars  See all reviews (10 customer reviews)

List Price: $150.00
Price: $115.26 & this item ships for FREE with Super Saver Shipping. Details
You Save: $34.74 (23%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Only 4 left in stock--order soon (more on the way).
Want it delivered Tuesday, January 31? Choose One-Day Shipping at checkout. Details

Formats

Amazon Price New from Used from
Kindle Edition $103.73  
Hardcover $115.26  

Book Description

The Wiley Finance Series August 30, 2004
One of the best languages for the development of financial engineering and instrument pricing applications is C++. This book has several features that allow developers to write robust, flexible and extensible software systems. The book is an ANSI/ISO standard, fully object-oriented and interfaces with many third-party applications. It has support for templates and generic programming, massive reusability using templates (?write once?) and support for legacy C applications.

In this book, author Daniel J. Duffy brings C++ to the next level by applying it to the design and implementation of classes, libraries and applications for option and derivative pricing models. He employs modern software engineering techniques to produce industrial-strength applications:

  • Using the Standard Template Library (STL) in finance
  • Creating your own template classes and functions
  • Reusable data structures for vectors, matrices and tensors
  • Classes for numerical analysis (numerical linear algebra ?)
  • Solving the Black Scholes equations, exact and approximate solutions
  • Implementing the Finite Difference Method in C++
  • Integration with the ?Gang of Four? Design Patterns
  • Interfacing with Excel (output and Add-Ins)
  • Financial engineering and XML
  • Cash flow and yield curves

Included with the book is a CD containing the source code in the Datasim Financial Toolkit. You can use this to get up to speed with your C++ applications by reusing existing classes and libraries.

'Unique... Let's all give a warm welcome to modern pricing tools.'
-- Paul Wilmott, mathematician, author and fund manager


Frequently Bought Together

Financial Instrument Pricing Using C++ (The Wiley Finance Series) + C++ Design Patterns and Derivatives Pricing (Mathematics, Finance and Risk) + Quant Job Interview Questions And Answers
Price For All Three: $212.94

Show availability and shipping details

Buy the selected items together
  • In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • C++ Design Patterns and Derivatives Pricing (Mathematics, Finance and Risk) $47.69

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • Quant Job Interview Questions And Answers $49.99

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details



Editorial Reviews

From the Back Cover

One of the best languages for the development of financial engineering and instrument pricing applications is C++. It has several features that allow developers to write robust, flexible and extensible software systems. It is an ANSI/ISO standard, fully object-oriented and interfaces with many third-party applications. It has support for templates and generic programming, massive reusability using templates (‘write once’) and support for legacy C applications.

In this book we bring C++ to the next level by applying it to the design and implementation of classes, libraries and applications for option and derivative pricing models. We employ modern software engineering techniques to produce industrial-strength applications: -

  • Using the Standard Template Library (STL) in finance
  • Creating your own template classes and functions
  • Reusable data structures for vectors, matrices and tensors
  • Classes for numerical analysis (numerical linear algebra …)
  • Solving the Black Scholes equations, exact and approximate solutions
  • Implementing the Finite Difference Method in C++
  • Integration with the ‘Gang of Four’ Design Patterns
  • Interfacing with Excel (output and Add-Ins)
  • Financial engineering and XML
  • Cash flow and yield curves

Included with the book is a CD containing the source code in the Datasim Financial Toolkit that you can use directly. This will get you up to speed with your C++ applications by reusing existing classes and libraries.

'Unique... Let's all give a warm welcome to modern pricing tools.' Paul Wilmott, mathematician, author and fund manager

About the Author

Daniel Duffy works for Datasim, an Amsterdam-based trainer and software developer (www.datasim-component.com, www.datasim.nl). He has been working in IT since 1979 and with object-oriented technology since 1987. He received his MSc and PhD theses (in numerical analysis) from Trinity College, Dublin. His current interests are in the modelling of financial instruments using numerical methods (for example, finite difference method) and C++. He can be contacted at dduffy@datasim.nl

Product Details

  • Hardcover: 432 pages
  • Publisher: Wiley (August 30, 2004)
  • Language: English
  • ISBN-10: 0470855096
  • ISBN-13: 978-0470855096
  • Product Dimensions: 9.9 x 6.7 x 1.2 inches
  • Shipping Weight: 2.3 pounds (View shipping rates and policies)
  • Average Customer Review: 3.3 out of 5 stars  See all reviews (10 customer reviews)
  • Amazon Best Sellers Rank: #1,071,298 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

10 Reviews
5 star:
 (5)
4 star:
 (1)
3 star:    (0)
2 star:    (0)
1 star:
 (4)
 
 
 
 
 
Average Customer Review
3.3 out of 5 stars (10 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

28 of 28 people found the following review helpful:
1.0 out of 5 stars Utter shambles, August 16, 2007
Amazon Verified Purchase(What's this?)
This review is from: Financial Instrument Pricing Using C++ (The Wiley Finance Series) (Hardcover)
The code is a real mess. Source files are missing, class member variables not defined, calls made to misspelled functions, basic syntax errors. Here are a few of the problems I have run into:
- Missing Source Files:: BVPmechanisms.hpp. So files like BVPSOlver.cpp can't compile
- Undefined members variables: AssocArray::contents. Can't build without it
- Basic syntax errors: (if ass2 == this). Should be if(ass2 == this)
- Incorrect function calls: standardDeviation(). Should be standardDeviation(x)

Aside from all the kindergarten errors, the author over uses templates to such an extent that simple routines are hopelessly obfuscated.

I think he built it on an old version of Visual C++. This is because the code fails to build on modern compilers with tighter error checking.

I have no idea why the other guys love this book so much, they must never have tried to build any of the examples in it ... which is weird because the whole reason I bought the book was to begin building a library of financial tools.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


46 of 55 people found the following review helpful:
5.0 out of 5 stars The best book in c++ instrument pricing, period., September 29, 2004
This review is from: Financial Instrument Pricing Using C++ (The Wiley Finance Series) (Hardcover)
Let me just say that I have a few financial modelling books, from Dr. Brooks to Mr. Joshi, and this is the best book by far. It clearly explain how to price a particular instruments using this poweful language. The book uses Standard Template Language (STL), by doing so your code are more readable and much faster. If I only had this book a few years back. Now I must say this book is for C++ programmers and Quants you really need to know C++ from beginning to end, templates, pointers, references, classes or that stuff you need it. This is the only book that comes with working code, it doesn't matter what type of compiler you have the code in the CD will work. Mr. Duffy explains how to model one factor and two factor Black-Scholes equations using finite differences, options(vanilla, exotic),interest rate and much more. The CD even comes with an Excel driver to transfer your data to Excel. Quant superstar Justin London is coming with his new book in a few months, and that book might over take this one, but as of right now this is the best C++ financial pricing book around. You can't go wrong with this one.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


22 of 25 people found the following review helpful:
5.0 out of 5 stars Computational Finance made efficient, September 24, 2005
This review is from: Financial Instrument Pricing Using C++ (The Wiley Finance Series) (Hardcover)
This book encapsulates all that is wonderful about OOP and shows how generic programming techniques (based on the STL) can be effectively applied to financial engineering and numerical analytic problems. The book requires only a first-course level knowledge of C++ (at the level of for example Ivor Horton's Beginning C++) and a first course level knowledge of Financial Mathematics (at the level of for example John Hull's masterpiece) and takes the reader on an entertaining journey through the basics of the STL and the applications of STL constructs to computational-financial and numerical-analytic problems, especially those relating to the numerical solution of partial differential equations. Also, the author makes a persuasive case for finite-difference methods and deals with a few subtleties of the Crank-Nicholson algorithm. For best results, it should be read along with a decent book on the Standard Library (for example the one by Nicolai Josuttis). Overall, it's a pleasure to read and learn from, on a par with Mark Joshi's little design-patterns volume, and more detailed!
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews








Only search this product's reviews



Inside This Book (learn more)
First Sentence:
The goal of this book is to model financial instruments, such as options, bonds and interest-rate products by partial differential equations, finite differences and C++. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
financial engineering applications, virtual void visit, exponentially fitted scheme, const vector, const pair, centred differencing, plain option, const list, output from this code, private member data, const iterator, element cout, fitted schemes, underlying data types, using namespace std, calculate option price, output from this program, sequence containers, creational patterns, singleton object, associative containers, executive option, template classes, copy constructor, void print
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Datasim Education, Double Sweep, Visual Basic, Standard Template Library, Monte Carlo, Alternating Direction Implicit, Extensible Markup Language, Combined Functions, Document Type Definition, First Size, Point Name, Second Size, Unified Modeling Language, Microsoft Excel, Program Files, Run Registration, Starting Excel
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:





Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(1)

Your tags: Add your first tag
 

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 

Search Customer Discussions
Search all Amazon discussions
   





Look for Similar Items by Category


Look for Similar Items by Subject