[PDF] [PDF] Advanced Modelling in Finance using Excel and VBA - Free

The models are implemented in Excel spreadsheets, complemented with functions written using the VBA language within Excel The resulting user-defined  



Previous PDF Next PDF





[PDF] Advanced Modelling in Finance using Excel and VBA - Free

The models are implemented in Excel spreadsheets, complemented with functions written using the VBA language within Excel The resulting user-defined  



[PDF] Financial Modeling Using Excel and VBA

Financial modeling is an essential skill for finance professionals and students, and Excel and its built-in programming language, Visual Basic for Applications ( VBA) 



[PDF] Advanced Modelling In Finance Using Excel And Vba - str-tnorg

Right here, we have countless books advanced modelling in finance using excel and vba and collections to check out We additionally pay for variant types and 



[PDF] Advanced Modelling In Finance Using Excel And Vba - str-tnorg

Acces PDF Advanced Modelling In Finance Using Excel And Vba The Wiley Finance Series by spending more cash nevertheless when? attain you resign 



[PDF] Financial Modeling Using Excel And VBA - Caribbean Environment

Advanced Modelling in Finance using Excel and VBA-Mary Jackson 2006-08-30 This new and unique book demonstrates that Excel and VBA can play an 



[PDF] ADVANCED FINANCIAL MODELLING USING EXCEL AND VBA

With global experience in the fields of financial analysis, modelling, corporate governance, consultation and training, Hamed has been consistently acclaimed as 



[PDF] Advanced Modelling In Finance Using Excel And Vba - Unhaggle

Step-by-step financial modeling - taught using downloadable Wall Street models, you will construct the model step by step as you page through the book Hot keys  

[PDF] Rural-Urban Migration in Bolivia: Advantages and Disadvantages

[PDF] les adverbes en anglais - Anglais-rapidefr

[PDF] lesson plan - TeachingEnglish

[PDF] Outils d 'accompagnement des parcours et des transitions

[PDF] Outils d 'accompagnement des parcours et des transitions

[PDF] techniques d 'éducation ? l 'enfance en service de garde en milieu

[PDF] Frais de scolarité 2016/2017 - Enseignement français au maroc

[PDF] Régime indemnitaire - Direction des Ressources Humaines - Aix

[PDF] 1ère inscription ? l 'Université de Montpellier - IAE Montpellier

[PDF] PLAQUETTE LICENCE AES copie - Université Paul Valéry

[PDF] Protocole de prise en charge d 'un Accident d ' Exposition au Virus

[PDF] Attestation d 'inscription ? un stage de formation - Pole-emploiorg

[PDF] préparer la rentrée 2017 - Ministère de l 'Éducation nationale

[PDF] REVALORISATION SALARIALE POUR LES AESH DE BIEN

[PDF] Guide #8226 L 'accompagnant des élèves en situation de handicap : AESH

Advanced Modelling in Finance

using Excel and VBA

Mary Jackson

and

Mike Staunton

JOHN WILEY & SONS, LTD

Chichester

New York

Weinheim

Brisbane

Singapore

Toronto

Copyright?2001 by John Wiley & Sons, Ltd,

Baffins Lane, Chichester,

West Sussex PO19 1UD, England

National 01243 779777

International (

C44) 1243 779777

e-mail (for orders and customerservice enquiries): cs-books@wiley.co.uk

Visit our Home Page on http://www.wiley.co.uk

or http://www.wiley.com 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, scanning or otherwise, except under theterms of the Copyright, Designs and Patents Act

1988 or under the terms of a licence issued by the Copyright Licensing Agency, 90 Tottenham Court

Road, London W1P 9HE, UK, without the permission in writing of the publisher.

Other Wiley Editorial Offices

John Wiley & Sons, Inc., 605 Third Avenue,

New York, NY 10158-0012, USA

Wiley-VCH Verlag GmbH, Pappelallee 3,

D-69469 Weinheim, Germany

John Wiley & Sons Australia Ltd, 42 McDougall Street, Milton,

Queensland 4064, Australia

John Wiley & Sons (Asia) Pte Ltd, 2 Clementi Loop #02-01,

Jin Xing Distripark, Singapore 129809

John Wiley & Sons Canada Ltd, 6045 Freemont Blvd,

Mississauga, ONT, L5R 4J3, Canada

British Library Cataloguing in Publication Data

A catalogue record for this book is available from the British Library

ISBN 0 471 49922 6

Typeset in 10/12pt Times by Laserwords Private Limited, Chennai, India Printed and bound in Great Britain by Bookcraft (Bath) Ltd, Midsomer-Norton This book is printed on acid-free paper responsibly manufactured from sustainable forestry, in which at least two trees are planted for each one used for paper production.

Contents

Prefacexi

Acknowledgementsxii

1 Introduction1

1.1 Finance insights 1

1.2 Asset price assumptions 2

1.3 Mathematical and statistical problems 2

1.4 Numerical methods 2

1.5 Excel solutions 3

1.6 Topics covered 3

1.7 Related Excel workbooks 5

1.8 Comments and suggestions 5

Part One Advanced Modelling in Excel7

2 Advanced Excel functions and procedures9

2.1 Accessing functions in Excel9

2.2 Mathematical functions10

2.3 Statistical functions12

2.3.1 Using the frequency function12

2.3.2 Using the quartile function14

2.3.3 Using Excel"s normal functions15

2.4 Lookup functions16

2.5 Other functions18

2.6 Auditing tools19

2.7 Data Tables20

2.7.1 Setting up Data Tables with one input20

2.7.2 Setting up Data Tables with two inputs22

2.8 XY charts23

2.9 Access to Data Analysis and Solver26

2.10 Using range names27

2.11 Regression28

2.12 Goal Seek31

vi Contents

2.13 Matrix algebra and related functions33

2.13.1 Introduction to matrices33

2.13.2 Transposing a matrix33

2.13.3 Adding matrices34

2.13.4 Multiplying matrices34

2.13.5 Matrix inversion35

2.13.6 Solving systems of simultaneous linear equations36

2.13.7 Summary of Excel"s matrix functions37

Summary37

3 Introduction to VBA39

3.1 Advantages of mastering VBA39

3.2 Object-oriented aspects of VBA40

3.3 Starting to write VBA macros42

3.3.1 Some simple examples of VBA subroutines42

3.3.2 MsgBox for interaction43

3.3.3 The writing environment44

3.3.4 Entering code and executing macros44

3.3.5 Recording keystrokes and editing code45

3.4 Elements of programming47

3.4.1 Variables and data types48

3.4.2 VBA array variables48

3.4.3 Control structures50

3.4.4 Control of repeating procedures51

3.4.5 Using Excel functions and VBA functions in code52

3.4.6 General points on programming53

3.5 Communicating between macros and the spreadsheet53

3.6 Subroutine examples56

3.6.1 Charts56

3.6.2 Normal probability plot59

3.6.3 Generating the efficient frontier with Solver61

Summary65

References65

Appendix 3A The Visual Basic Editor65

Stepping through a macro and using other

debug tools68 Appendix 3B Recording keystrokes in 'relative references" mode 69

4 Writing VBA user-de“ned functions73

4.1 A simple sales commission function73

4.2 Creating Commission(Sales) in the spreadsheet74

4.3 Two functions with multiple inputs for valuing options75

4.4 Manipulating arrays in VBA78

4.5 Expected value and variance functions with array inputs79

4.6 Portfolio variance function with array inputs81

4.7 Functions with array output84

4.8 Using Excel and VBA functions in user-defined functions85

Contents vii

4.8.1 Using VBA functions in user-defined functions85

4.8.2 Add-ins86

4.9 Pros and cons of developing VBA functions86

Summary87

Appendix 4A Functions illustrating array handling88 Appendix 4B Binomial tree option valuation functions89

Exercises on writing functions94

Solution notes for exercises on functions95

Part Two Equities99

5 Introduction to equities101

6 Portfolio optimisation103

6.1 Portfolio mean and variance103

6.2 Risk-return representation of portfolios105

6.3 Using Solver to find efficient points106

6.4 Generating the efficient frontier (Huang and Litzenberger"s

approach)109

6.5 Constrained frontier portfolios111

6.6 Combining risk-free and risky assets113

6.7 Problem One-combining a risk-free asset with a risky asset114

6.8 Problem Two-combining two risky assets115

6.9 Problem Three-combining a risk-free asset with a risky portfolio 117

6.10 User-defined functions in Module1119

6.11 Functions for the three generic portfolio problems in Module1 120

6.12 Macros in ModuleM121

Summary123

References123

7 Asset pricing125

7.1 The single-index model125

7.2 Estimating beta coefficients126

7.3 The capital asset pricing model129

7.4 Variance-covariance matrices130

7.5 Value-at-Risk131

7.6 Horizon wealth134

7.7 Moments of related distributions such as normal and lognormal 136

7.8 User-defined functions in Module1136

Summary138

References138

8 Performance measurement and attribution139

8.1 Conventional performance measurement140

8.2 Active-passive management141

8.3 Introduction to style analysis144

viii Contents

8.4 Simple style analysis145

8.5 Rolling-period style analysis146

8.6 Confidence intervals for style weights148

8.7 User-defined functions in Module1151

8.8 Macros in ModuleM151

Summary152

References153

Part Three Options on Equities155

9 Introduction to options on equities157

9.1 The genesis of the Black-Scholes formula158

9.2 The Black-Scholes formula158

9.3 Hedge portfolios159

9.4 Risk-neutral valuation161

9.5 A simple one-step binomial tree with risk-neutral valuation162

9.6 Put-call parity163

9.7 Dividends163

9.8 American features164

9.9 Numerical methods164

9.10 Volatility and non-normal share returns165

Summary165

References166

10 Binomial trees167

10.1 Introduction to binomial trees167

10.2 A simplified binomial tree168

10.3 The Jarrow and Rudd binomial tree170

10.4 The Cox, Ross and Rubinstein tree173

10.5 Binomial approximations and Black-Scholes formula175

10.6 Convergence of CRR binomial trees176

10.7 The Leisen and Reimer tree177

10.8 Comparison of CRR and LR trees178

10.9 American options and the CRR American tree180

10.10 User-defined functions in Module0 and Module1182

Summary183

References184

11 The Black...Scholes formula185

11.1 The Black-Scholes formula185

11.2 Black-Scholes formula in the spreadsheet186

11.3 Options on currencies and commodities187

11.4 Calculating the option"s 'greek" parameters189

11.5 Hedge portfolios190

11.6 Formal derivation of the Black-Scholes formula192

Contents ix

11.7 User-defined functions in Module1194

Summary195

References196

12 Other numerical methods for European options197

12.1 Introduction to Monte Carlo simulation197

12.2 Simulation with antithetic variables199

12.3 Simulation with quasi-random sampling200

12.4 Comparing simulation methods202

12.5 Calculating greeks in Monte Carlo simulation203

12.6 Numerical integration203

12.7 User-defined functions in Module1205

Summary207

References207

13 Non-normal distributions and implied volatility209

13.1 Black-Scholes using alternative distributional assumptions209

13.2 Implied volatility211

13.3 Adapting for skewness and kurtosis212

13.4 The volatility smile215

13.5 User-defined functions in Module1217

Summary219

References220

Part Four Options on Bonds221

14 Introduction to valuing options on bonds223

14.1 The term structure of interest rates224

14.2 Cash flows for coupon bonds and yield to maturity225

14.3 Binomial trees226

14.4 Black"s bond option valuation formula227

14.5 Duration and convexity228

14.6 Notation230

Summary230

References230

15 Interest rate models231

15.1 Vasicek"s term structure model231

15.2 Valuing European options on zero-coupon bonds, Vasicek"s model 234

15.3 Valuing European options on coupon bonds, Vasicek"s model 235

15.4 CIR term structure model236

15.5 Valuing European options on zero-coupon bonds, CIR model237

15.6 Valuing European options on coupon bonds, CIR model238

15.7 User-defined functions in Module1239

Summary240

References241

x Contents

16 Matching the term structure243

16.1 Trees with lognormally distributed interest rates243

16.2 Trees with normal interest rates246

16.3 The Black, Derman and Toy tree247

16.4 Valuing bond options using BDT trees248

16.5 User-defined functions in Module1250

Summary252

References252

Appendix Other VBA functions253

Forecasting253

ARIMA modelling254

Splines256

Eigenvalues and eigenvectors257

References258

Index259

Preface

When asked why they tackled Mount Everest, climbers typically reply "Because it was there". Our motivation for writing Advanced Modelling in Finance is for exactly the opposite reason. There were then, and still are now, almost no books that give due prominence to and explanation of the use of VBA functions within Excel. There is an almost similar lack of books that capture the true vibrant spirit of numerical methods in finance. It is no longer true that spreadsheets such as Excel are inadequate tools in highly tech- nical and numerically demanding areas such as the valuation of financial derivatives. With efficient code and VBA functions, calculations that were once the preserve of dedicated packages and languages can now be done on a modern PC in Excel within seconds, if not fractions of a second. By employing Excel and VBA, our purpose is to try to bring clarity to an area that was previously covered with black boxes. What started as an attempt to push back the boundaries of Excel through macros turned into a full-scale expedition into the VBA language within Excel and then developed from equities, through options and finally to cover bonds. Along the way we learned scores of new Excel skills and a much greater understanding of the numerical methods implemented across finance. The genesis of the book came from material developed for the 'Computer-Based Finan- cial Modelling" elective on the MBA degree at London Business School. The part on equities formed the basis for an executive course on 'Equity Portfolio Management" run annually by the International Centre for Money and Banking in Geneva. The parts on options and bonds comprise a course in 'Numerical Methods" on the MSc in Mathemat- ical Trading and Finance at City University Business School. The book is within the reach of both students at the postgraduate level and those in the latter undergraduate years. There are no prerequisites for readers apart from a willingness to adopt a pro-active stance when using the book-namely by taking advantage of the inherent 'what-if" quality of the spreadsheets and by looking at and using the code forming the VBA user-defined functions. Since we assume for the most part that asset returns are lognormal and therefore use binomial trees as a central numerical method, our explanations can be based on familiar results from probability and statistics. Comprehension is helped by the use of a common notation throughout, and transparency by the availability of complete solutions in both Excel and VBA forms.

Acknowledgements

Our main debt is to the individuals from the academic and practitioner communities in finance who first developed the theory and then the numerical methods that form the material for this book. In the words of Sir Isaac Newton "If I have seen further it is by standing on the shoulders of giants". We would also like to thank our colleagues at both London Business School and City University Business School, in particular Elroy Dimson, John Hatgioannides, Paul Marsh and Kiriakos Vlahos. We would like to thank Sam Whittaker at Wiley for her enthusiasm, encouragement and much needed patience, invaluable qualities for an editor. Last but not least, we are grateful for the patience of family and friends who have occasionally chivvied us about the book"s somewhat lengthy gestation period. 1

Introduction

We hope that our text, Advanced Modelling in Finance, is conclusive proof that a wide range of models can now be successfully implemented using spreadsheets. The models range across the complete spectrum of finance including equities, equity options and bond options spanning developments from the early fifties to the late nineties. The models are implemented in Excel spreadsheets, complemented with functions written using the VBA language within Excel. The resulting user-defined functions provide a portable library of programs with more than sufficient speed and accuracy. Advanced Modelling in Finance should be viewed as a complement (or dare we say, an antidote) to traditional textbooks in the area. It contains relatively few derivations, allowing us to cover a broader range of models and methods, with particular emphasis on more recent advances. The major theoretical developments in finance such as portfolio theory in the 1950s, the capital asset pricing model in the 1960s and the Black-Scholes formula in the 1970s brought with them analytic solutions that are now straightforward to calculate. The subse- quent decades have seen a growing body of developments in numerical methods. With an intelligent choice of parameters, binomial trees have assumed a central role in the morequotesdbs_dbs22.pdfusesText_28