How to Implement Market Models Using VBA

Size: px
Start display at page:

Download "How to Implement Market Models Using VBA"

Transcription

1 How to Implement Market Models Using VBA

2 How to Implement Market Models Using VBA FRANÇOIS GOOSSENS

3 This edition first published François Goossens Registered office John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex, PO19 8SQ, United Kingdom For details of our global editorial offices, for customer services and for information about how to apply for permission to reuse the copyright material in this book please see our website at All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, except as permitted by the UK Copyright, Designs and Patents Act 1988, without the prior permission of the publisher. Wiley publishes in a variety of print and electronic formats and by print-on-demand. Some material included with standard print versions of this book may not be included in e-books or in print-on-demand. If this book refers to media such as a CD or DVD that is not included in the version you purchased, you may download this material at For more information about Wiley products, visit Designations used by companies to distinguish their products are often claimed as trademarks. All brand names and product names used in this book are trade names, service marks, trademarks or registered trademarks of their respective owners. The publisher is not associated with any product or vendor mentioned in this book. Limit of Liability/Disclaimer of Warranty: While the publisher and author have used their best efforts in preparing this book, they make no representations or warranties with the respect to the accuracy or completeness of the contents of this book and specifically disclaim any implied warranties of merchantability or fitness for a particular purpose. It is sold on the understanding that the publisher is not engaged in rendering professional services and neither the publisher nor the author shall be liable for damages arising herefrom. If professional advice or other expert assistance is required, the services of a competent professional should be sought. Library of Congress Cataloging-in-Publication Data is Available ISBN (hardback) ISBN (ebk) ISBN (ebk) ISBN Cover Design: Wiley Top Image: istock.com/pixel_dreams; Bottom Image: istock.com/awstok Set in 10/12pt Times by Laserwords Private Limited, Chennai, India Printed in Great Britain by TJ International Ltd, Padstow, Cornwall, UK

4 Contents Preface Acknowledgements Abbreviations About the Author ix xi xiii xv CHAPTER 1 The Basics of VBA Programming Getting started VBA objects and syntax The object-oriented basic syntax Using objects Variables Variable declaration Some usual objects Arrays Arithmetic Subroutines and functions Subroutines Functions Operations on one-dimensional arrays Operations on two-dimensional arrays (matrices) Operations with dates Custom objects Types Classes Debugging Error handling Tracking the code execution 25 v

5 vi CONTENTS CHAPTER 2 Mathematical Algorithms Introduction Sorting lists Shell sort Quick sort Implicit equations Search for extrema The Nelder-Mead algorithm The simulated annealing Linear algebra Matrix inversion Cholesky decomposition Interpolation Integration Principal Component Analysis 60 CHAPTER 3 Vanilla Instruments Definitions Fixed income Bond market Interbank market Vanilla derivatives Forward contracts Swaps Bond futures Options basics Brownian motion Ito integral Ito formula Black Scholes basic model Risk-neutral probability Change of probability Martingale and numeraires European-style options pricing First generation exotic options Barrier options Quanto options 102 CHAPTER 4 Numerical Solutions Finite differences Generic equation Implementation 106

6 Contents vii 4.2 Trees Binomial trees Trinomial trees Monte-Carlo scenarios Uniform number generator From uniform to Gaussian numbers Simulation and regression Double-barrier analytical approximation 134 CHAPTER 5 Monte-Carlo Pricing Issues Multi-asset simulation The correlations issue The Gaussian case Exotics Discretization schemes Variance reduction techniques Antithetic variates Importance sampling Control variates 153 CHAPTER 6 Yield Curve Models Short rate models Introduction Hull and White one-factor model Gaussian two-factor model Hull and White two-factor model Forward rate models Generic Heath-Jarrow-Morton LMM (LIBOR market model) 216 CHAPTER 7 Stochastic Volatilities The Heston model Code A faster algorithm Calibration Barrier options Numerical results Code Asian-style options SABR model Caplets Code 265

7 viii CONTENTS CHAPTER 8 Interest Rate Exotics CMS swaps Code Cancelable swaps Code Tree approximation Target redemption note Code 282 Bibliography 287 Index 289

8 Preface Graduate students and practitioners coming to the area of quantitative finance may be daunted by the abstruseness of stochastic matters, coupled with the austerity of scientific programming languages. Learning these disciplines is a challenge that some are reluctant to tackle. Then, to get some hands-on expertise of complex valuation issues with an easy-to-learn programming language, without delving too deeply into the theory, proves to be an attractive alternative: this is what this book invites you to do. For this purpose, VBA has been chosen for its accessible code and its connection with Excel and its easy-to-use spreadsheet format. What sort of financial applications may be run in VBA? Contrary to common belief, you can run a lot of complex pricings with VBA, almost as fast as in C++ even if VBA is not going to compete with C++ as the engine of big risk management systems. This book will not specifically address the computing performance topic: for a comprehensive approach to this see, e.g., Webber (2011). However, one thing to remember is that, not only in terms of accuracy, but also in terms of computational cost, VBA is an efficient tool to get fast and in-depth understanding skills on complex derivatives. How this book can help you To complete a pricing project from scratch is a road paved with challenging steps. If you are holding this book it means you are already a VBA developer, or you intend to become one, and you have some taste for quantitative matters: it is already a good start. Guiding you through the technical obstacles and making you familiar with the means to fix them is the ambition of this book. The quicker you complete your first Monte-Carlo algorithm or tree-based pricing program, the more self-confidence you get, if you are a newcomer in applications coding. To strengthen this self-confidence, no aspect of quantitative issues must remain in the shadow: you will probably notice that barrier option valuation theory and yield curve modeling are developed in detail, for they illustrate best the key notions of stochastic calculus. Knowledge prerequisites No VBA knowledge is required. The essentials presented in this book should suffice. You must have basic notions of analysis (continuity, derivability, integration) and linear algebra basics (matrix calculus). In the capital markets domain, you must be familiar with vanilla derivatives (forward contracts, European-style options) and, preferably, have some knowledge of the common risk management issues, such as delta or gamma positions. As regards the stochastic calculus theory, this book helps you to apply theory with a practical approach. ix

9 x PREFACE Structure of the book Chapter 1 delivers the essential syntax and vocabulary elements to start coding algorithms in VBA; some emphasis is put on matricial calculus, as it occupies a prominent place in numerical algorithms and Monte-Carlo scenarios. Chapter 2 introduces common algorithms that fix unavoidable numerical problems in the course of a pricing algorithm. In fact, every valuation program will encounter at least one interpolation or optimization hurdle at some stage of the algorithm. Chapter 3 gives the reader an opportunity to check his knowledge of the capital market fundamentals. For complete VBA beginners, it also provides some training exercises to put into practice VBA techniques, such as loops. In a second part, one key aspect of the stochastic calculus theory, the change of probability measure is addressed. This technique is implemented via barrier options pricing. Chapter 4 deals with numerical solutions that are called in aid when no analytical solution is available: to put it bluntly, it fixes 99% of the problems. This is the core material of the book, since every pricing algorithm refers more or less to one of the recipes presented in this chapter. Chapter 5 deals with classes of assets that are valued using Monte-Carlo simulation methods. It covers multi-asset and path-dependent instruments. Variance reduction techniques are logically investigated in this chapter. Chapter 6 addresses widely used yield curve models and the critical calibration issues. It introduces first Hull & White and Gaussian short rate models, secondly Heath-Jarrow-Morton and LIBOR market forward rate curve models. Chapter 7: as a widespread standard stochastic volatility model, Heston s is here presented in detail. Some recipes to tackle exotic pricings using this model are developed. In addition, one paragraph is devoted to SABR. Chapter 8: in this chapter, our yield curve modelings are put into application to implement numerical algorithms aimed at some "standard" interest rate exotics: CMS Swaps, Cancelable Swaps, and Target Redemption Notes. Solutions resulting from different models or numerical methods will be compared.

10 Acknowledgements My thanks go first to the staff of Wiley for their patience and assistance in the unenviable task of correcting the manuscript. I would also like to thank the practitioners and principal lecturers at the Paris Dauphine and Paris-Sorbonne universities who provided time from their busy schedules to review or comment on this book. Advice and encouragement given by Sofiane Aboura especially have been of great help in completing the work. Last but not least, I would like to express my gratitude to the authors, some are mentioned in the bibliography, who succeeded in making quantitative finance an appealing matter: I owe them an incurable taste for financial algorithms. xi

11 Abbreviations ATM BGM BS CMS HJM IRS LMM OTC RNG RV TARN At-the-money (options) Benhamou/Gobet/Miri approximation method (Heston model) Black Scholes Constant Maturity Swap Heath-Jarrow-Morton model Interest Rate Swap LIBOR Market Model Over-The-Counter Random Number Generator Random Variable TArget Redemption Note xiii

12 About the Author François Goossens has 12 years experience in Java and VBA programming of pricing algorithms. As a consultant, he currently trains students and young practitioners in computational finance through VBA coding. Prior to that he ran, over 15 years, interest-rates and equity related trading desks with Credit Lyonnais and Ixis, and was strongly involved in exotic derivatives management. François graduated from École Centrale in Paris. xv

Co p y r i g h t e d Ma t e r i a l

Co p y r i g h t e d Ma t e r i a l i JWBK850-fm JWBK850-Hilpisch October 13, 2016 14:56 Printer Name: Trim: 244mm 170mm Listed Volatility and Variance Derivatives ii JWBK850-fm JWBK850-Hilpisch October 13, 2016 14:56 Printer Name: Trim:

More information

Financial Forecasting, Analysis, and Modelling

Financial Forecasting, Analysis, and Modelling Financial Forecasting, Analysis, and Modelling Financial Forecasting, Analysis, and Modelling A Framework for Long-Term Forecasting MICHAEL SAMONAS This edition first published 2015 2015 Michael Samonas

More information

Fundamentals of Actuarial Mathematics

Fundamentals of Actuarial Mathematics Fundamentals of Actuarial Mathematics Third Edition S. David Promislow Fundamentals of Actuarial Mathematics Fundamentals of Actuarial Mathematics Third Edition S. David Promislow York University, Toronto,

More information

Paul Wilmott On Quantitative Finance

Paul Wilmott On Quantitative Finance Paul Wilmott On Quantitative Finance Paul Wilmott On Quantitative Finance Second Edition www.wilmott.com Copyright 2006 Paul Wilmott Published by John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester,

More information

Handbook of Financial Risk Management

Handbook of Financial Risk Management Handbook of Financial Risk Management Simulations and Case Studies N.H. Chan H.Y. Wong The Chinese University of Hong Kong WILEY Contents Preface xi 1 An Introduction to Excel VBA 1 1.1 How to Start Excel

More information

Stochastic Interest Rates

Stochastic Interest Rates Stochastic Interest Rates This volume in the Mastering Mathematical Finance series strikes just the right balance between mathematical rigour and practical application. Existing books on the challenging

More information

Mathematical Modeling and Methods of Option Pricing

Mathematical Modeling and Methods of Option Pricing Mathematical Modeling and Methods of Option Pricing This page is intentionally left blank Mathematical Modeling and Methods of Option Pricing Lishang Jiang Tongji University, China Translated by Canguo

More information

Institute of Actuaries of India. Subject. ST6 Finance and Investment B. For 2018 Examinationspecialist Technical B. Syllabus

Institute of Actuaries of India. Subject. ST6 Finance and Investment B. For 2018 Examinationspecialist Technical B. Syllabus Institute of Actuaries of India Subject ST6 Finance and Investment B For 2018 Examinationspecialist Technical B Syllabus Aim The aim of the second finance and investment technical subject is to instil

More information

Interest Rate Modeling

Interest Rate Modeling Chapman & Hall/CRC FINANCIAL MATHEMATICS SERIES Interest Rate Modeling Theory and Practice Lixin Wu CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor & Francis

More information

Risk Management and Financial Institutions

Risk Management and Financial Institutions Risk Management and Financial Institutions Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North America, Europe, Australia and Asia,

More information

A Foreign Exchange Primer

A Foreign Exchange Primer A Foreign Exchange Primer For other titles in the Wiley Trading series please see www.wiley.com/finance A FOREIGN EXCHANGE PRIMER Second Edition Shani Shamah A John Wiley and Sons, Ltd., Publication Copyright

More information

Martingale Methods in Financial Modelling

Martingale Methods in Financial Modelling Marek Musiela Marek Rutkowski Martingale Methods in Financial Modelling Second Edition Springer Table of Contents Preface to the First Edition Preface to the Second Edition V VII Part I. Spot and Futures

More information

The SABR/LIBOR Market Model Pricing, Calibration and Hedging for Complex Interest-Rate Derivatives

The SABR/LIBOR Market Model Pricing, Calibration and Hedging for Complex Interest-Rate Derivatives The SABR/LIBOR Market Model Pricing, Calibration and Hedging for Complex Interest-Rate Derivatives Riccardo Rebonato Kenneth McKay and Richard White A John Wiley and Sons, Ltd., Publication The SABR/LIBOR

More information

MFE Course Details. Financial Mathematics & Statistics

MFE Course Details. Financial Mathematics & Statistics MFE Course Details Financial Mathematics & Statistics Calculus & Linear Algebra This course covers mathematical tools and concepts for solving problems in financial engineering. It will also help to satisfy

More information

Contents. Part I Introduction to Option Pricing

Contents. Part I Introduction to Option Pricing Part I Introduction to Option Pricing 1 Asset Pricing Basics... 3 1.1 Fundamental Concepts.................................. 3 1.2 State Prices in a One-Period Binomial Model.............. 11 1.3 Probabilities

More information

Martingale Methods in Financial Modelling

Martingale Methods in Financial Modelling Marek Musiela Marek Rutkowski Martingale Methods in Financial Modelling Second Edition \ 42 Springer - . Preface to the First Edition... V Preface to the Second Edition... VII I Part I. Spot and Futures

More information

Principles of Group Accounting under IFRS

Principles of Group Accounting under IFRS Principles of Group Accounting under IFRS Principles of Group Accounting under IFRS by Andreas Krimpmann This edition first published 2015 2015 John Wiley & Sons, Ltd Registered office John Wiley & Sons

More information

MFE Course Details. Financial Mathematics & Statistics

MFE Course Details. Financial Mathematics & Statistics MFE Course Details Financial Mathematics & Statistics FE8506 Calculus & Linear Algebra This course covers mathematical tools and concepts for solving problems in financial engineering. It will also help

More information

Handbook of Asset and Liability Management

Handbook of Asset and Liability Management Handbook of Asset and Liability Management From models to optimal return strategies Alexandre Adam Handbook of Asset and Liability Management For other titles in the Wiley Finance series please see www.wiley.com/finance

More information

by Kian Guan Lim Professor of Finance Head, Quantitative Finance Unit Singapore Management University

by Kian Guan Lim Professor of Finance Head, Quantitative Finance Unit Singapore Management University by Kian Guan Lim Professor of Finance Head, Quantitative Finance Unit Singapore Management University Presentation at Hitotsubashi University, August 8, 2009 There are 14 compulsory semester courses out

More information

FINANCIAL DERIVATIVE. INVESTMENTS An Introduction to Structured Products. Richard D. Bateson. Imperial College Press. University College London, UK

FINANCIAL DERIVATIVE. INVESTMENTS An Introduction to Structured Products. Richard D. Bateson. Imperial College Press. University College London, UK FINANCIAL DERIVATIVE INVESTMENTS An Introduction to Structured Products Richard D. Bateson University College London, UK Imperial College Press Contents Preface Guide to Acronyms Glossary of Notations

More information

AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO Academic Press is an Imprint of Elsevier

AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO Academic Press is an Imprint of Elsevier Computational Finance Using C and C# Derivatives and Valuation SECOND EDITION George Levy ELSEVIER AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO

More information

Discounted Cash Flow. A Theory of the Valuation of Firms. Lutz Kruschwitz and Andreas Löffler

Discounted Cash Flow. A Theory of the Valuation of Firms. Lutz Kruschwitz and Andreas Löffler Discounted Cash Flow A Theory of the Valuation of Firms Lutz Kruschwitz and Andreas Löffler Discounted Cash Flow For other titles in the Wiley Finance Series please see www.wiley.com/finance Discounted

More information

Preface Objectives and Audience

Preface Objectives and Audience Objectives and Audience In the past three decades, we have witnessed the phenomenal growth in the trading of financial derivatives and structured products in the financial markets around the globe and

More information

Risk-Neutral Valuation

Risk-Neutral Valuation N.H. Bingham and Rüdiger Kiesel Risk-Neutral Valuation Pricing and Hedging of Financial Derivatives W) Springer Contents 1. Derivative Background 1 1.1 Financial Markets and Instruments 2 1.1.1 Derivative

More information

THE NEW WEALTH MANAGEMENT

THE NEW WEALTH MANAGEMENT THE NEW WEALTH MANAGEMENT CFA Institute is the premier association for investment professionals around the world, with over 101,000 members in 134 countries. Since 1963 the organization has developed and

More information

Risk Analysis. Assessing Uncertainties beyond Expected Values and Probabilities. Terje Aven. University of Stavanger, Norway

Risk Analysis. Assessing Uncertainties beyond Expected Values and Probabilities. Terje Aven. University of Stavanger, Norway Risk Analysis Risk Analysis Assessing Uncertainties beyond Expected Values and Probabilities Terje Aven University of Stavanger, Norway Copyright 2008 John Wiley & Sons Ltd, The Atrium, Southern Gate,

More information

Implementing Models in Quantitative Finance: Methods and Cases

Implementing Models in Quantitative Finance: Methods and Cases Gianluca Fusai Andrea Roncoroni Implementing Models in Quantitative Finance: Methods and Cases vl Springer Contents Introduction xv Parti Methods 1 Static Monte Carlo 3 1.1 Motivation and Issues 3 1.1.1

More information

MFIN 7003 Module 2. Mathematical Techniques in Finance. Sessions B&C: Oct 12, 2015 Nov 28, 2015

MFIN 7003 Module 2. Mathematical Techniques in Finance. Sessions B&C: Oct 12, 2015 Nov 28, 2015 MFIN 7003 Module 2 Mathematical Techniques in Finance Sessions B&C: Oct 12, 2015 Nov 28, 2015 Instructor: Dr. Rujing Meng Room 922, K. K. Leung Building School of Economics and Finance The University of

More information

With Examples Implemented in Python

With Examples Implemented in Python SABR and SABR LIBOR Market Models in Practice With Examples Implemented in Python Christian Crispoldi Gerald Wigger Peter Larkin palgrave macmillan Contents List of Figures ListofTables Acknowledgments

More information

Advanced Equity Derivatives

Advanced Equity Derivatives Advanced Equity Derivatives Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North America, Europe, Australia and Asia, Wiley is globally

More information

Understanding the Mathematics of Personal Finance An Introduction to Financial Literacy Lawrence N. Dworsky A John Wiley & Sons, Inc., Publication Understanding the Mathematics of Personal Finance Understanding

More information

Hedge Fund. Course STUART A. MCCRARY. John Wiley & Sons, Inc.

Hedge Fund. Course STUART A. MCCRARY. John Wiley & Sons, Inc. Hedge Fund Course STUART A. MCCRARY John Wiley & Sons, Inc. Hedge Fund Course Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North

More information

Credit Risk Modeling Using Excel and VBA with DVD O. Gunter Loffler Peter N. Posch. WILEY A John Wiley and Sons, Ltd., Publication

Credit Risk Modeling Using Excel and VBA with DVD O. Gunter Loffler Peter N. Posch. WILEY A John Wiley and Sons, Ltd., Publication Credit Risk Modeling Using Excel and VBA with DVD O Gunter Loffler Peter N. Posch WILEY A John Wiley and Sons, Ltd., Publication Preface to the 2nd edition Preface to the 1st edition Some Hints for Troubleshooting

More information

Monte Carlo Methods in Financial Engineering

Monte Carlo Methods in Financial Engineering Paul Glassennan Monte Carlo Methods in Financial Engineering With 99 Figures

More information

Project Finance in Construction

Project Finance in Construction Project Finance in Construction A Structured Guide to Assessment Anthony Merna Oriel Group Practice Manchester, UK Yang Chu Postdoctoral Research Associate Manchester Business School The University of

More information

INTRODUCTION TO THE ECONOMICS AND MATHEMATICS OF FINANCIAL MARKETS. Jakša Cvitanić and Fernando Zapatero

INTRODUCTION TO THE ECONOMICS AND MATHEMATICS OF FINANCIAL MARKETS. Jakša Cvitanić and Fernando Zapatero INTRODUCTION TO THE ECONOMICS AND MATHEMATICS OF FINANCIAL MARKETS Jakša Cvitanić and Fernando Zapatero INTRODUCTION TO THE ECONOMICS AND MATHEMATICS OF FINANCIAL MARKETS Table of Contents PREFACE...1

More information

QUANTITATIVE INVESTMENT ANALYSIS WORKBOOK

QUANTITATIVE INVESTMENT ANALYSIS WORKBOOK QUANTITATIVE INVESTMENT ANALYSIS WORKBOOK Second Edition Richard A. DeFusco, CFA Dennis W. McLeavey, CFA Jerald E. Pinto, CFA David E. Runkle, CFA John Wiley & Sons, Inc. QUANTITATIVE INVESTMENT ANALYSIS

More information

Fixed Income Modelling

Fixed Income Modelling Fixed Income Modelling CLAUS MUNK OXPORD UNIVERSITY PRESS Contents List of Figures List of Tables xiii xv 1 Introduction and Overview 1 1.1 What is fixed income analysis? 1 1.2 Basic bond market terminology

More information

Financial Models with Levy Processes and Volatility Clustering

Financial Models with Levy Processes and Volatility Clustering Financial Models with Levy Processes and Volatility Clustering SVETLOZAR T. RACHEV # YOUNG SHIN ICIM MICHELE LEONARDO BIANCHI* FRANK J. FABOZZI WILEY John Wiley & Sons, Inc. Contents Preface About the

More information

Financial Statistics and Mathematical Finance Methods, Models and Applications. Ansgar Steland

Financial Statistics and Mathematical Finance Methods, Models and Applications. Ansgar Steland Financial Statistics and Mathematical Finance Methods, Models and Applications Ansgar Steland Financial Statistics and Mathematical Finance Financial Statistics and Mathematical Finance Methods, Models

More information

Curriculum. Written by Administrator Sunday, 03 February :33 - Last Updated Friday, 28 June :10 1 / 10

Curriculum. Written by Administrator Sunday, 03 February :33 - Last Updated Friday, 28 June :10 1 / 10 1 / 10 Ph.D. in Applied Mathematics with Specialization in the Mathematical Finance and Actuarial Mathematics Professor Dr. Pairote Sattayatham School of Mathematics, Institute of Science, email: pairote@sut.ac.th

More information

Discrete Models of Financial Markets

Discrete Models of Financial Markets Discrete Models of Financial Markets This book explains in simple settings the fundamental ideas of financial market modelling and derivative pricing, using the No Arbitrage Principle. Relatively elementary

More information

MULTISCALE STOCHASTIC VOLATILITY FOR EQUITY, INTEREST RATE, AND CREDIT DERIVATIVES

MULTISCALE STOCHASTIC VOLATILITY FOR EQUITY, INTEREST RATE, AND CREDIT DERIVATIVES MULTISCALE STOCHASTIC VOLATILITY FOR EQUITY, INTEREST RATE, AND CREDIT DERIVATIVES Building upon the ideas introduced in their previous book, Derivatives in Financial Markets with Stochastic Volatility,

More information

Contents Critique 26. portfolio optimization 32

Contents Critique 26. portfolio optimization 32 Contents Preface vii 1 Financial problems and numerical methods 3 1.1 MATLAB environment 4 1.1.1 Why MATLAB? 5 1.2 Fixed-income securities: analysis and portfolio immunization 6 1.2.1 Basic valuation of

More information

SYLLABUS. IEOR E4728 Topics in Quantitative Finance: Inflation Derivatives

SYLLABUS. IEOR E4728 Topics in Quantitative Finance: Inflation Derivatives SYLLABUS IEOR E4728 Topics in Quantitative Finance: Inflation Derivatives Term: Summer 2007 Department: Industrial Engineering and Operations Research (IEOR) Instructor: Iraj Kani TA: Wayne Lu References:

More information

Monte Carlo Methods in Finance

Monte Carlo Methods in Finance Monte Carlo Methods in Finance Peter Jackel JOHN WILEY & SONS, LTD Preface Acknowledgements Mathematical Notation xi xiii xv 1 Introduction 1 2 The Mathematics Behind Monte Carlo Methods 5 2.1 A Few Basic

More information

FE501 Stochastic Calculus for Finance 1.5:0:1.5

FE501 Stochastic Calculus for Finance 1.5:0:1.5 Descriptions of Courses FE501 Stochastic Calculus for Finance 1.5:0:1.5 This course introduces martingales or Markov properties of stochastic processes. The most popular example of stochastic process is

More information

Global Property Investment

Global Property Investment Global Property Investment To our wives and children The book s companion website at www.wiley.com/go/baumglobalpropertyinvestment offers freely downloadable material for practitioners, lecturers and students,

More information

HIGH- FREQUENCY TRADING

HIGH- FREQUENCY TRADING A Practical Guide to Algorithmic Strategies and Trading Systems HIGH- FREQUENCY TRADING Irene Aldridge High-Frequency Trading A Practical Guide to Algorithmic Strategies and Trading Systems IRENE ALDRIDGE

More information

Computational Methods in Finance

Computational Methods in Finance Chapman & Hall/CRC FINANCIAL MATHEMATICS SERIES Computational Methods in Finance AM Hirsa Ltfi) CRC Press VV^ J Taylor & Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor &

More information

WILEY A John Wiley and Sons, Ltd., Publication

WILEY A John Wiley and Sons, Ltd., Publication Implementing Models of Financial Derivatives Object Oriented Applications with VBA Nick Webber WILEY A John Wiley and Sons, Ltd., Publication Contents Preface xv PART I A PROCEDURAL MONTE CARLO METHOD

More information

Master of Science in Finance (MSF) Curriculum

Master of Science in Finance (MSF) Curriculum Master of Science in Finance (MSF) Curriculum Courses By Semester Foundations Course Work During August (assigned as needed; these are in addition to required credits) FIN 510 Introduction to Finance (2)

More information

2.1 Mathematical Basis: Risk-Neutral Pricing

2.1 Mathematical Basis: Risk-Neutral Pricing Chapter Monte-Carlo Simulation.1 Mathematical Basis: Risk-Neutral Pricing Suppose that F T is the payoff at T for a European-type derivative f. Then the price at times t before T is given by f t = e r(t

More information

Market interest-rate models

Market interest-rate models Market interest-rate models Marco Marchioro www.marchioro.org November 24 th, 2012 Market interest-rate models 1 Lecture Summary No-arbitrage models Detailed example: Hull-White Monte Carlo simulations

More information

MSc Financial Mathematics

MSc Financial Mathematics MSc Financial Mathematics Programme Structure Week Zero Induction Week MA9010 Fundamental Tools TERM 1 Weeks 1-1 0 ST9080 MA9070 IB9110 ST9570 Probability & Numerical Asset Pricing Financial Stoch. Processes

More information

Market Risk Analysis Volume I

Market Risk Analysis Volume I Market Risk Analysis Volume I Quantitative Methods in Finance Carol Alexander John Wiley & Sons, Ltd List of Figures List of Tables List of Examples Foreword Preface to Volume I xiii xvi xvii xix xxiii

More information

FIXED INCOME SECURITIES

FIXED INCOME SECURITIES FIXED INCOME SECURITIES Valuation, Risk, and Risk Management Pietro Veronesi University of Chicago WILEY JOHN WILEY & SONS, INC. CONTENTS Preface Acknowledgments PART I BASICS xix xxxiii AN INTRODUCTION

More information

The Option Trader Handbook

The Option Trader Handbook The Option Trader Handbook Strategies and Trade Adjustments GEORGE M. JABBOUR, PhD PHILIP H. BUDWICK, MsF John Wiley & Sons, Inc. The Option Trader Handbook Founded in 1807, John Wiley & Sons is the oldest

More information

Actuarial Models : Financial Economics

Actuarial Models : Financial Economics ` Actuarial Models : Financial Economics An Introductory Guide for Actuaries and other Business Professionals First Edition BPP Professional Education Phoenix, AZ Copyright 2010 by BPP Professional Education,

More information

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Our exam is Wednesday, December 19, at the normal class place and time. You may bring two sheets of notes (8.5

More information

MSc Financial Mathematics

MSc Financial Mathematics MSc Financial Mathematics The following information is applicable for academic year 2018-19 Programme Structure Week Zero Induction Week MA9010 Fundamental Tools TERM 1 Weeks 1-1 0 ST9080 MA9070 IB9110

More information

MARVIN RAUSAND. Risk Assessment. Theory, Methods, and Applications STATISTICS I:-\ PRACTICE

MARVIN RAUSAND. Risk Assessment. Theory, Methods, and Applications STATISTICS I:-\ PRACTICE MARVIN RAUSAND Risk Assessment Theory, Methods, and Applications STATISTICS I:-\ PRACTICE RISK ASSESSMENT STATISTICS IN PRACTICE Advisory Editor Wolfgang Jank University of Maryland, USA Founding Editor

More information

Fundamentals of Futures and Options Markets

Fundamentals of Futures and Options Markets GLOBAL EDITION Fundamentals of Futures and Markets EIGHTH EDITION John C. Hull Editor in Chief: Donna Battista Acquisitions Editor: Katie Rowland Editorial Project Manager: Emily Biberger Editorial Assistant:

More information

Pricing Options with Mathematical Models

Pricing Options with Mathematical Models Pricing Options with Mathematical Models 1. OVERVIEW Some of the content of these slides is based on material from the book Introduction to the Economics and Mathematics of Financial Markets by Jaksa Cvitanic

More information

Economic Scenario Generator: Applications in Enterprise Risk Management. Ping Sun Executive Director, Financial Engineering Numerix LLC

Economic Scenario Generator: Applications in Enterprise Risk Management. Ping Sun Executive Director, Financial Engineering Numerix LLC Economic Scenario Generator: Applications in Enterprise Risk Management Ping Sun Executive Director, Financial Engineering Numerix LLC Numerix makes no representation or warranties in relation to information

More information

The Mathematics Of Financial Derivatives: A Student Introduction Free Ebooks PDF

The Mathematics Of Financial Derivatives: A Student Introduction Free Ebooks PDF The Mathematics Of Financial Derivatives: A Student Introduction Free Ebooks PDF Finance is one of the fastest growing areas in the modern banking and corporate world. This, together with the sophistication

More information

MS Finance-Quantitative (MSFQ) Academic Year

MS Finance-Quantitative (MSFQ) Academic Year MS Finance-Quantitative (MSFQ) 2018-2019 Academic Year MSFQ Three-Semester Course Plan Preprogram Foundations Requirements Online workshops begin in July (these are in addition to required credits and

More information

Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor Information. Class Information. Catalog Description. Textbooks

Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor Information. Class Information. Catalog Description. Textbooks Instructor Information Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor: Daniel Bauer Office: Room 1126, Robinson College of Business (35 Broad Street) Office Hours: By appointment (just

More information

The Liquidity Theory of Asset Prices. Gordon Pepper with Michael J. Oliver

The Liquidity Theory of Asset Prices. Gordon Pepper with Michael J. Oliver The Liquidity Theory of Asset Prices Gordon Pepper with Michael J. Oliver The following are quotes about the course The Monetary Theory of Asset Prices, Module 3, Practical History of Financial Markets,

More information

TRADING OPTION GREEKS

TRADING OPTION GREEKS TRADING OPTION GREEKS Since 1996, Bloomberg Press has published books for financial professionals on investing, economics, and policy affecting investors. Titles are written by leading practitioners and

More information

Managing the Newest Derivatives Risks

Managing the Newest Derivatives Risks Managing the Newest Derivatives Risks Michel Crouhy IXIS Corporate and Investment Bank / A subsidiary of NATIXIS Derivatives 2007: New Ideas, New Instruments, New markets NYU Stern School of Business,

More information

for Finance Python Yves Hilpisch Koln Sebastopol Tokyo O'REILLY Farnham Cambridge Beijing

for Finance Python Yves Hilpisch Koln Sebastopol Tokyo O'REILLY Farnham Cambridge Beijing Python for Finance Yves Hilpisch Beijing Cambridge Farnham Koln Sebastopol Tokyo O'REILLY Table of Contents Preface xi Part I. Python and Finance 1. Why Python for Finance? 3 What Is Python? 3 Brief History

More information

Accelerated Option Pricing Multiple Scenarios

Accelerated Option Pricing Multiple Scenarios Accelerated Option Pricing in Multiple Scenarios 04.07.2008 Stefan Dirnstorfer (stefan@thetaris.com) Andreas J. Grau (grau@thetaris.com) 1 Abstract This paper covers a massive acceleration of Monte-Carlo

More information

Budgeting Basics and Beyond

Budgeting Basics and Beyond Budgeting Basics and Beyond Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North America, Europe, Asia, and Australia, Wiley is globally

More information

MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, Student Name (print):

MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, Student Name (print): MATH4143 Page 1 of 17 Winter 2007 MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, 2007 Student Name (print): Student Signature: Student ID: Question

More information

Strategic Corporate Finance

Strategic Corporate Finance Strategic Corporate Finance Applications in Valuation and Capital Structure JUSTIN PETTIT John Wiley & Sons, Inc. Additional Praise for Strategic Corporate Finance Strategic Corporate Finance provides

More information

Simple Profits from Swing Trading, Revised and Updated

Simple Profits from Swing Trading, Revised and Updated Simple Profits from Swing Trading, Revised and Updated Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North America, Europe, Australia,

More information

DANIEL W. HALPIN, PURDUE UNIVERSITY BOLIVAR A. SENIOR, COLORADO STATE UNIVERSITY JOHN WILEY & SONS, INC.

DANIEL W. HALPIN, PURDUE UNIVERSITY BOLIVAR A. SENIOR, COLORADO STATE UNIVERSITY JOHN WILEY & SONS, INC. FINANCIAL MANAGEMENT AND ACCOUNTING FUNDAMENTALS FOR CONSTRUCTION DANIEL W. HALPIN, PURDUE UNIVERSITY BOLIVAR A. SENIOR, COLORADO STATE UNIVERSITY JOHN WILEY & SONS, INC. This book is printed on acid-free

More information

The Pennsylvania State University. The Graduate School. Department of Industrial Engineering AMERICAN-ASIAN OPTION PRICING BASED ON MONTE CARLO

The Pennsylvania State University. The Graduate School. Department of Industrial Engineering AMERICAN-ASIAN OPTION PRICING BASED ON MONTE CARLO The Pennsylvania State University The Graduate School Department of Industrial Engineering AMERICAN-ASIAN OPTION PRICING BASED ON MONTE CARLO SIMULATION METHOD A Thesis in Industrial Engineering and Operations

More information

Wiley Trading ENH A NCED INDEXING STR ATEGIES. Ut ilizing Fu ture s and O p tions to Ac hieve Higher Pe r formanc e. Tristan Yates

Wiley Trading ENH A NCED INDEXING STR ATEGIES. Ut ilizing Fu ture s and O p tions to Ac hieve Higher Pe r formanc e. Tristan Yates Wiley Trading ENH A NCED INDEXING STR ATEGIES Ut ilizing Fu ture s and O p tions to Ac hieve Higher Pe r formanc e Tristan Yates Enhanced Indexing Strategies Founded in 1807, John Wiley & Sons is the

More information

NUMERICAL AND SIMULATION TECHNIQUES IN FINANCE

NUMERICAL AND SIMULATION TECHNIQUES IN FINANCE NUMERICAL AND SIMULATION TECHNIQUES IN FINANCE Edward D. Weinberger, Ph.D., F.R.M Adjunct Assoc. Professor Dept. of Finance and Risk Engineering edw2026@nyu.edu Office Hours by appointment This half-semester

More information

Studies in Computational Intelligence

Studies in Computational Intelligence Studies in Computational Intelligence Volume 697 Series editor Janusz Kacprzyk, Polish Academy of Sciences, Warsaw, Poland e-mail: kacprzyk@ibspan.waw.pl About this Series The series Studies in Computational

More information

DAY TRADING AND SWING TRADING THE CURRENCY MARKET

DAY TRADING AND SWING TRADING THE CURRENCY MARKET DAY TRADING AND SWING TRADING THE CURRENCY MARKET The Wiley Trading series features books by traders who have survived the market s ever changing temperament and have prospered some by reinventing systems,

More information

Table of Contents. Part I. Deterministic Models... 1

Table of Contents. Part I. Deterministic Models... 1 Preface...xvii Part I. Deterministic Models... 1 Chapter 1. Introductory Elements to Financial Mathematics.... 3 1.1. The object of traditional financial mathematics... 3 1.2. Financial supplies. Preference

More information

Valuation. The Market Approach

Valuation. The Market Approach Valuation The Market Approach For other titles in the Wiley Finance Series please see www.wiley.com/finance Valuation The Market Approach Seth Bernström This edition first published 2014 2014 Seth Bernström

More information

STOCHASTIC MODELLING OF ELECTRICITY AND RELATED MARKETS

STOCHASTIC MODELLING OF ELECTRICITY AND RELATED MARKETS Advanced Series on Statistical Science & Applied Probability Vol. I I STOCHASTIC MODELLING OF ELECTRICITY AND RELATED MARKETS Fred Espen Benth JGrate Saltyte Benth University of Oslo, Norway Steen Koekebakker

More information

Statistical Models and Methods for Financial Markets

Statistical Models and Methods for Financial Markets Tze Leung Lai/ Haipeng Xing Statistical Models and Methods for Financial Markets B 374756 4Q Springer Preface \ vii Part I Basic Statistical Methods and Financial Applications 1 Linear Regression Models

More information

Interest Rate Bermudan Swaption Valuation and Risk

Interest Rate Bermudan Swaption Valuation and Risk Interest Rate Bermudan Swaption Valuation and Risk Dmitry Popov FinPricing http://www.finpricing.com Summary Bermudan Swaption Definition Bermudan Swaption Payoffs Valuation Model Selection Criteria LGM

More information

Interpretation and Application of. IFRS Standards

Interpretation and Application of. IFRS Standards Interpretation and 2017 Application of IFRS Standards BECOME A SUBSCRIBER! Did you purchase this product from a bookstore? If you did, it s important for you to become a subscriber. John Wiley & Sons,

More information

ICEF, Higher School of Economics, Moscow Msc Programme Autumn Derivatives

ICEF, Higher School of Economics, Moscow Msc Programme Autumn Derivatives ICEF, Higher School of Economics, Moscow Msc Programme Autumn 2017 Derivatives The course consists of two parts. The first part examines fundamental topics and approaches in derivative pricing; it is taught

More information

Accounting for Derivatives

Accounting for Derivatives Accounting for Derivatives For other titles in the Wiley Finance series please see www.wiley.com/finance Accounting for Derivatives Advanced Hedging under IFRS 9 Second Edition JUAN RAMIREZ This edition

More information

MODULE SPECIFICATIONS. Mathematical Methods of Finance (Online Version) Level M, Certificate Stage, 20 credits

MODULE SPECIFICATIONS. Mathematical Methods of Finance (Online Version) Level M, Certificate Stage, 20 credits MODULE SPECIFICATIONS Mathematical Methods of Finance (Online Version) Level M, Certificate Stage, 20 credits Old code: 0570001 (until 2010/11) New code: MAT00027M (from 2011/12) Aims and Distinctive Features:

More information

SYLLABUS. IEOR E4724 Topic in Quantitative Finance: Introduction to Structured and Hybrid Products

SYLLABUS. IEOR E4724 Topic in Quantitative Finance: Introduction to Structured and Hybrid Products SYLLABUS IEOR E4724 Topic in Quantitative Finance: Introduction to Structured and Hybrid Products Term: Spring 2011 Department: Industrial Engineering and Operations Research (IEOR) Instructor: Iraj Kani

More information

ADDITIONAL PRAISE FOR MIDDLE MARKET M&A

ADDITIONAL PRAISE FOR MIDDLE MARKET M&A ADDITIONAL PRAISE FOR MIDDLE MARKET M&A At last we have a comprehensive body of knowledge for the M&A middle market. This anthology of contemporary thinking is very timely considering how global this market

More information

Monte Carlo Methods in Structuring and Derivatives Pricing

Monte Carlo Methods in Structuring and Derivatives Pricing Monte Carlo Methods in Structuring and Derivatives Pricing Prof. Manuela Pedio (guest) 20263 Advanced Tools for Risk Management and Pricing Spring 2017 Outline and objectives The basic Monte Carlo algorithm

More information

Computer Exercise 2 Simulation

Computer Exercise 2 Simulation Lund University with Lund Institute of Technology Valuation of Derivative Assets Centre for Mathematical Sciences, Mathematical Statistics Fall 2017 Computer Exercise 2 Simulation This lab deals with pricing

More information

Interest Rate Cancelable Swap Valuation and Risk

Interest Rate Cancelable Swap Valuation and Risk Interest Rate Cancelable Swap Valuation and Risk Dmitry Popov FinPricing http://www.finpricing.com Summary Cancelable Swap Definition Bermudan Swaption Payoffs Valuation Model Selection Criteria LGM Model

More information

The Enlargement of the European Union

The Enlargement of the European Union The Enlargement of the European Union A Guide for the Entrepreneur Ine Lejeune and Walter Van Denberghe PricewaterhouseCoopers The Enlargement of the European Union The Enlargement of the European Union

More information

Business Ratios and Formulas

Business Ratios and Formulas Business Ratios and Formulas A COMPREHENSIVE GUIDE SECOND EDITION Steven M. Bragg John Wiley & Sons, Inc. Business Ratios and Formulas SECOND EDITION Business Ratios and Formulas A COMPREHENSIVE GUIDE

More information