You have no items in your shopping cart.

Foundations of Computational Finance with MATLAB

Foundations of Computational Finance with MATLAB

  • Author:
  • Publisher: John Wiley & Sons
  • ISBN: 9781119433859
  • Published In: May 2018
  • Format: Hardback , 368 pages
  • Jurisdiction: International ? Disclaimer:
    Countri(es) stated herein are used as reference only

List Price: HKD 380.00

HKD 368.60 Save HKD 11.40 (3%)

Delivery Time: around 4-5 weeks
Extra 2-10 working days if shipping address outside Hong Kong
Free delivery Hong Kong?
Hong Kong: free delivery (order over HKD 1000)
OR
  • Description 
  • Contents 
  • Author 
  • Details

    Graduate from Excel to MATLAB® to keep up with the evolution of finance data

    Foundations of Computational Finance with MATLAB® is an introductory text for both finance professionals looking to branch out from the spreadsheet, and for programmers who wish to learn more about finance. As financial data grows in volume and complexity, its very nature has changed to the extent that traditional financial calculators and spreadsheet programs are simply no longer enough. Today’s analysts need more powerful data solutions with more customization and visualization capabilities, and MATLAB provides all of this and more in an easy-to-learn skillset.

    This book walks you through the basics, and then shows you how to stretch your new skills to create customized solutions. Part I demonstrates MATLAB’s capabilities as they apply to traditional finance concepts, and PART II shows you how to create interactive and reusable code, link with external data sources, communicate graphically, and more.

    • Master MATLAB’s basic operations including matrices, arrays, and flexible data structures
    • Learn how to build your own customized solutions when the built-ins just won’t do
    • Learn how to handle financial data and industry-specific variables including risk and uncertainty
    • Adopt more accurate modeling practices for portfolios, options, time series, and more

    MATLAB is an integrated development environment that includes everything you need in one well-designed user interface. Available Toolboxes provide tested algorithms that save you hours of code, and the skills you learn using MATLAB make it easier to learn additional languages if you choose to do so. Financial firms are catching up to universities in MATLAB usage, so this is skill set that will follow you throughout your career. When you’re ready to step into the new age of finance, Foundations of Computational Finance with MATLAB provides the expert instruction you need to get started quickly. 

  • Introduction xiii

    Why You Should Read This Book xiii

    The Intended Reader xiv

    Why MATLAB®? xiv

    How to Use This Book xvi

    Font Conventions xvi

    About the Author xvii

    MathWorks Information xviii

    References xviii

    Part I MATLAB Conventions and Basic Skills 1

    Chapter 1 Working with MATLAB® Data 3

    1.1 Introduction 3

    1.2 Arrays 3

    1.2.1 Numerical Arrays 4

    1.2.2 Math Calculations with Scalars,Vectors, and Matrices 10

    1.2.3 Statistical Calculations on Vectors and Matrices 16

    1.2.4 Extracting Values from Numerical Vectors and Matrices 19

    1.2.5 Counting Elements 26

    1.2.6 Sorting Vectors and Matrices 28

    1.2.7 Relational Expressions and Logical Arrays 31

    1.2.8 Dealing with NaNs (Not a Number) 35

    1.2.9 Dealing with Missing Data 39

    1.3 Character Arrays 40

    1.3.1 String Arrays 44

    1.4 Flexible Data Structures 46

    1.4.1 Cell Arrays 47

    1.4.2 Structure (“struct”) Arrays 49

    1.4.3 Tables 51

    References 60

    Further Reading 60

    Chapter 2 Working with Dates and Times 61

    2.1 Introduction 61

    2.2 Finance Background: Why Dates and Times Matter 61

    2.2.1 First Challenge: Day Count Conventions 62

    2.2.2 Second Challenge: Date Formats 63

    2.3 Dates and Times in MATLAB 64

    2.3.1 Datetime Variables 64

    2.3.2 Date Conversions 73

    2.3.3 Date Generation Functions with Serial Number Outputs 79

    2.3.4 Duration Arrays 83

    2.3.5 Calendar Duration Variables 86

    2.3.6 Date Calculations and Operations 89

    2.3.7 Plotting Date Variables Introduction 94

    References 95

    Chapter 3 Basic Programming with MATLAB® 97

    3.1 Introduction 97

    3.1.1 Algorithms 101 97

    3.1.2 Go DIY or Use Built-In Code? 98

    3.2 MATLAB Scripts and Functions 99

    3.2.1 Scripts 99

    3.2.2 Developing Functions 106

    3.2.3 If Statements 112

    3.2.4 Modular Programming 115

    3.2.5 User Message Formats 121

    3.2.6 Testing and Debugging 124

    References 127

    Chapter 4 Working with Financial Data 129

    4.1 Introduction 129

    4.2 Accessing Financial Data 129

    4.2.1 Closing Prices versus Adjusted Close Prices for Stocks 130

    4.2.2 Data Download Examples 131

    4.2.3 Importing Data Interactively 133

    4.2.4 Automating Data Imports with a Script 138

    4.2.5 Automating Data Imports with a Function 140

    4.2.6 Importing Data Programmatically 147

    4.3 Working with Spreadsheet Data 154

    4.3.1 Importing Spreadsheet Data with Import Tool 154

    4.3.2 Importing Spreadsheet Data Programmatically 154

    4.4 Data Visualization 156

    4.4.1 Built-In Plot Functions 156

    4.4.2 Using the Plot Tools 158

    4.4.3 Plotting with Commands 159

    4.4.4 Other Plot Tools 162

    4.4.5 Built-In Financial Charts 173

    References 176

    Part II Financial Calculations with MATLAB 177

    Chapter 5 The Time Value of Money 179

    5.1 Introduction 179

    5.2 Finance Background 180

    5.2.1 Future Value with Single Cash Flows 180

    5.2.2 Future Value with Multiple Cash Flows 185

    5.2.3 Present Value with Single Cash Flows 187

    5.2.4 Present Value with Multiple Variable Cash Flows 188

    5.3 MATLAB Time Value of Money Functions 189

    5.3.1 Future Value of Fixed Periodic Payments 190

    5.3.2 Future Value of Variable Payments 191

    5.3.3 Present Value of Fixed Payments 193

    5.3.4 Present Value of Variable Payments 194

    5.4 Internal Rate of Return 197

    5.5 Effective Interest Rates 198

    5.6 Compound Annual Growth Rate 198

    5.7 Continuous Interest 200

    5.8 Loans 200

    References 202

    Chapter 6 Bonds 203

    6.1 Introduction 203

    6.2 Finance Background 204

    6.2.1 Bond Classifications 204

    6.2.2 Bond Terminology 205

    6.3 MATLAB Bond Functions 206

    6.3.1 US Treasury Bills 206

    6.3.2 Bond Valuation Principles 208

    6.3.3 Calculating Bond Prices 209

    6.3.4 Calculating Bond Yields 212

    6.3.5 Calculating a Bond’s Total Return 214

    6.3.6 Pricing Discount Bonds 216

    6.4 Bond Analytics 216

    6.4.1 Interest Rate Risk 217

    6.4.2 Measuring Rate Sensitivity 219

    6.4.3 Yield Curves 227

    6.5 Callable Bonds 229

    References 231

    Further Reading 231

    Chapter 7 Dealing with Uncertainty and Risk 233

    7.1 Introduction 233

    7.2 Overview of Financial Risk 234

    7.3 Data Insights 234

    7.3.1 Visualizing Data 235

    7.3.2 Basic Single Series Plots 237

    7.3.3 Basic Multiple Series Plots 237

    7.3.4 Adding Plot Customization 238

    7.3.5 Histograms 239

    7.3.6 Measures of Central Location 241

    7.3.7 Measures of Data Dispersion 243

    7.4 Data Relationships 249

    7.4.1 Covariance and Correlation 251

    7.4.2 Correlation Coefficients 252

    7.5 Creating a Basic Simulation Model 253

    7.6 Value at Risk (VaR) 258

    References 261

    Further Reading 262

    Chapter 8 Equity Derivatives 263

    8.1 Introduction 263

    8.2 Options 264

    8.2.1 Option Quotes 265

    8.2.2 Market Mechanics 266

    8.2.3 Factors in Option Valuation 267

    8.3 Option Pricing Models 268

    8.3.1 Arbitrage 269

    8.3.2 Binomial Option Pricing 270

    8.3.3 Black-Scholes 274

    8.4 Options’ Uses 276

    8.4.1 Hedging 277

    8.4.2 Speculation and Leverage 277

    8.4.3 Customizing Payoff Profiles 278

    8.5 Appendix: Other Types of Derivatives 279

    8.5.1 Commodity and Energy 279

    8.5.2 Credit 279

    8.5.3 Exotic Options 280

    References 281

    Further Reading 281

    Chapter 9 Portfolios 283

    9.1 Introduction 283

    9.2 Finance Background 283

    9.3 Portfolio Optimization 285

    9.4 MATLAB Portfolio Object 286

    9.4.1 Object-Oriented Programming (OOP) 286

    9.4.2 A Basic Example 287

    9.4.3 Using Data Stored in a Table

    Format 294

    References 296

    Chapter 10 Regression and Time Series 297

    10.1 Introduction 297

    10.2 Basic Regression 297

    10.2.1 Understanding Least Squares 300

    10.2.2 Model Notation 301

    10.2.3 Fitting a Polynomial with polyfit and polyval 303

    10.2.4 Linear Regression Methods 305

    10.3 Working with Time Series 308

    10.3.1 Step 1: Load the Data (Single Series) 308

    10.3.2 Step 2: Create the FTS Object 309

    10.3.3 Step 3: Using FTS Tools 311

    References 314

    Appendix 1 Sharing Your Work 315

    A1.1 Introduction 315

    A1.2 Publishing a Script 316

    A1.2.1 Publishing with Code Sections 317

    A1.2.2 futureValueCalc3 319

    A1.2.3 Formatting Options 321

    A1.2.4 Working with Live Scripts 322

    A1.2.5 Editing and Control 325

    References 326

    Appendix 2 Reference for Included MATLAB® Functions 327

    Index 335

  • ED MCCARTHY is a journalist, prolific finance writer, and MathWorks Certified MATLAB® Associate. His articles have appeared in Bloomberg Wealth Manager, CFA Institute Magazine, Institutional Investor, Financial Planning, Journal of Accountancy,and the Journal of Financial Planning. He is also author of The Financial Advisor's Analytical Toolbox and Fast Forward MBA in Personal Finance.

You may also be interested in these books:

KPMG's Insights into IFRS 2023/2024 (20th Edition) (e-Book only)
KPMG's Insights into IFRS 2023/2024 (20th Edition) (e-Book only)

List Price: HKD 2,064.00

HKD 2,002.08 Save HKD 61.92 (3%)

The Hong Kong Company Secretary's Handbook: Practice and Procedure (11th Edition)
The Hong Kong Company Secretary's Handbook: Practice and Procedure (11th Edition)

List Price: HKD 535.00

HKD 518.95 Save HKD 16.05 (3%)

Hong Kong Tax & Accounting Practical Toolkit (Basic Package)
Hong Kong Tax & Accounting Practical Toolkit (Basic Package)
HKD 3,300.00
Consolidated Financial Statements, 10th Edition
Consolidated Financial Statements, 10th Edition

List Price: HKD 710.00

HKD 688.70 Save HKD 21.30 (3%)

Hong Kong Company Secretary's Practice Manual, 5th Edition
Hong Kong Company Secretary's Practice Manual, 5th Edition

List Price: HKD 1,380.00

HKD 1,338.60 Save HKD 41.40 (3%)

A Practical Guide to Company Secretarial Obligations in Singapore, 2nd Edition
A Practical Guide to Company Secretarial Obligations in Singapore, 2nd Edition

List Price: HKD 1,210.00

HKD 1,173.70 Save HKD 36.30 (3%)

Applied Valuation in Hong Kong and Asia Capital Markets
Applied Valuation in Hong Kong and Asia Capital Markets

List Price: HKD 1,380.00

HKD 1,338.60 Save HKD 41.40 (3%)

Hong Kong Financial Reporting Standards for SMEs (2nd Edition)
Hong Kong Financial Reporting Standards for SMEs (2nd Edition)

List Price: HKD 1,500.00

HKD 1,455.00 Save HKD 45.00 (3%)

International Master Tax Guide 2022-23, 8th Edition (2 Volume set)
International Master Tax Guide 2022-23, 8th Edition (2 Volume set)

List Price: HKD 1,940.00

HKD 776.00 Save HKD 1,164.00 (60%)

Derivatives and Hedge Accounting, 2nd Edition
Derivatives and Hedge Accounting, 2nd Edition

List Price: HKD 450.00

HKD 436.50 Save HKD 13.50 (3%)

Hong Kong Company Law & Compliance Practical Toolkit (Basic Package)
Hong Kong Company Law & Compliance Practical Toolkit (Basic Package)
HKD 4,400.00
China Master Tax Guide 2021 (14th Edition)
China Master Tax Guide 2021 (14th Edition)

List Price: HKD 1,680.00

HKD 1,629.60 Save HKD 50.40 (3%)

Tax Accounting in Mergers and Acquisitions (2022)
Tax Accounting in Mergers and Acquisitions (2022)

List Price: HKD 5,090.00

HKD 4,937.30 Save HKD 152.70 (3%)

Audit and Assurance: Principles and Practices in Singapore, 5th Edition
Audit and Assurance: Principles and Practices in Singapore, 5th Edition

List Price: HKD 1,000.00

HKD 970.00 Save HKD 30.00 (3%)

Hong Kong Company Secretary Checklist
Hong Kong Company Secretary Checklist

List Price: HKD 1,380.00

HKD 1,338.60 Save HKD 41.40 (3%)