The Big Book Store  
Search Advanced SearchView Cart   Checkout   
 Location:  Home > Science & Nature > Applied Mathematics > C++ Design Patterns and Derivatives Pricing (Mathematics, Finance and Risk) (Mathematics, Finance and Risk)  
Categories
Art, Architecture & Photography
Audio CDs
Audio Cassettes
Biography
Business, Finance & Law
Calendars, Diaries, Annuals & More
Childrens Books
Comics & Graphic Novels
Computers & Internet
Crime, Thrillers & Mystery
Fiction
Food & Drink
Health, Family & Lifestyle
History
Home & Garden
Horror
Humour
Languages
Mind, Body & Spirit
Music, Stage & Screen
Poetry, Drams & Criticism
Reference
Religion & Spirituality
Romance
Science & Nature
Science Fiction & Fantasy
Scientific, Technical & Mediacl
Society, Politics & Philosophy
Sports, Hobbies & Games
Study Books
Travel & Holiday
Young Adult
DVD
Shopping Cart
Subcategories
Computer Mathematics
Fractals
Mathematical Modelling
Mathematics for Scientists & Engineers
Physics
Stochastics
Chaos & Fractal Theory
Cryptography
Finance & Economics
Fuzzy Set Theory
Game Theory
Linear Programming
Mathematical Modelling
Non-linear Science
Numerical Analysis
Optimisation
Scientific & Engineering Mathematics
Statistics & Probability
Stochastics
Ages 0-2
Ages 3-4
Ages 5-8
Ages 9-11
Ages 12-16
New
Used
Collectible

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

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

zoom enlarge 
Author: Mark S. Joshi
Publisher: Cambridge University Press
Category: Book

List Price: £29.99
Buy New: £23.99
You Save: £6.00 (20%)



New (33) Used (5) from £23.99

Rating: 4.5 out of 5 stars 6 reviews
Sales Rank: 18041

Media: Paperback
Edition: 2
Number Of Items: 1
Pages: 308
Shipping Weight (lbs): 1.4
Dimensions (in): 9.7 x 6.8 x 0.6

ISBN: 0521721628
Dewey Decimal Number: 511
EAN: 9780521721622
ASIN: 0521721628

Publication Date: May 31, 2008
Availability: Usually dispatched within 1-2 business days
Condition: Brand new in perfect condition, sent first class from the UK!

Also Available In:

  • Hardcover - C++ Design Patterns and Derivatives Pricing (Mathematics, Finance and Risk)

Similar Items:

  • The Concepts and Practice of Mathematical Finance (Mathematics, Finance and Risk) (Mathematics, Finance and Risk)
  • Heard on the Street: Quantitative Questions from Wall Street Job Interviews
  • Modeling Derivatives in C++ (Wiley Finance)
  • Options, Futures, and Other Derivatives (Prentice Hall Series in Finance)
  • The Volatility Surface: A Practitioner's Guide (Wiley Finance)

Customer Reviews:   Read 1 more reviews...

4 out of 5 stars Where are the pictures?   August 13, 2006
 3 out of 4 found this review helpful

This book tries to enforce good C++ programming practices, in particular design patterns, for options pricing, with a hands-on approach, concisely and clearly.

The main drawback is the lack of diagrams: when designing object oriented programs, you draw a lot of doodles (learned people call them "UML diagrams", but they are just doodles), that are useful to clarify your ideas and to communicate them. Why is there none? I checked other C++ finance books, and they all had the same problem -- if you plan to write yet another C++ finance book, you know what not to forget...

You are probably better off with a more general book about "good programming practices" (including, but not limited to, design patterns: Design Patterns, by E. Gamma et al., is the classical reference, but there might be newer books), a book about C++ programming quirks (such as S. Meyers's Effective C++), together with a more mathematically-oriented options book -- only come back to M. Joshi's book afterwards and consider it as an application of those practices.



4 out of 5 stars Good, all the code works.   May 17, 2005
 3 out of 4 found this review helpful

Unlike many textbooks, all the code in Joshi's book works and compiles. However, do save yourself time and get the latest version of the code from his website, forget the bundled CD.

Joshi not only explains quickly how to implement the basic pricing techniques (trees, monte carlo), but also offers some good guidance on modern OO C++ techniques (patterns) along the way.

My only criticism is that the book is too short. I would have gladly read another 50% on top.


4 out of 5 stars A Superb, Practical Introduction to Quant Programming   December 23, 2004
 4 out of 7 found this review helpful

This book stands out because it has clearly been written by a quant practitioner rather than a pure theorist. It regularly focuses on the real life challenge of producing a performant, maintainable system which can be enhanced over time with minimal impact.

Though it does not claim to be an introduction to C++ or Mathematical Finance, its onion-skin approach is effective in guiding those with a very basic knowledge in these two areas into some reasonably advanced terrain.


5 out of 5 stars A fast-paced introduction to sophisticated C++   December 8, 2004
 7 out of 7 found this review helpful

C++ is a big language. It has a lot of features and even more in the way of clever ideas for combining these features to create effective code. Most books on the subject are dauntingly huge, at least to the novice. Perhaps the greatest virtue of this book is that it covers a lot of ground while being slim enough (under 200 widely-spaced pages) to be easily read from cover to cover.

The book is clearly aimed at those in quantitative finance and the examples are designed to be of genuinely useful code that a quant might write. This is a refreshing change from more general books where the examples are either silly ("a Sauternes is inherited from a Bordeaux and has a pour() member function") or do the kind of low-level manipulation (such as container classes) that few programmers write. The examples are given in full, even if this involves repeating a good deal of code, but I suppose this does give the reader the satisfaction of quickly skimming two or three pages from time to time.

Aside from a basic acquaintance with mathematical finance, the reader is required to have a rudimentary knowledge of C++. However the more advanced language features, such as virtual functions and templates, are explained concisely as they are introduced. Writing good object-oriented code depends very much on knowing not so much the syntatical rules but why the language features are there and when to use them. This is the emphasis of this book; it gives very clear well-reasoned guidance for effective use of the language. One very important aspect of this is the use of so-called "design patterns". I'm not sure this term is ever defined but it becomes clear through many examples that it refers to clever ways to combine language features to achieve particular generic goals.

There are places where the author introduces several ideas at once and almost trips over himself in an effort to explain them all. But once the reader becomes accustomed to this and is therefore prepared to wait a little for an explanation of something, this is an effective way of getting through the material rapidly. Consequently this is a very readable book, in which the alert reader can learn a lot in a short time. All in all, this book is ideal for someone starting to write C++ for finance or even for a more experienced quant who feels his code is insufficiently sophisticated.


5 out of 5 stars The boss and his/her requests   October 20, 2004
 2 out of 3 found this review helpful

Having implemented mathematical finance solutions in a variety of programming languages, I found in Joshi's book the ideal guide to move to the C++ way of doing things.
The book certainly requires some knowledge of C++ (at least an introductory book) but leads the reader through a learning process focused on the reasons why C++ is the most used language in financial engineering.
It starts for the simplest non-OO implementation, highlighting (pros and) cons, and then moves on to the appropriate C++ solution. In the way, fundamental design patterns are introduced and used (strategy, decorator, bridge...). By the end of the book the reader will have seen how to build a Monte Carlo engine for exotic options and how to simplify its interface through the more complicated factory pattern.
Numerically, the book is mainly focused on Monte Carlo methods but it also spends a chapter on trees (binomial) and one on templatised root finding (for the implied vol). PDEs are not dealt with.
The never-ending requests of the "evil boss" are a constant driver in a quest for reusability and generality and the book clearly shows how to achieve these. Knowing how evil bosses can be I would say that this book is certainly a BUY!!!