Handbook of Financial Risk Management
eBook - ePub

Handbook of Financial Risk Management

Simulations and Case Studies

Ngai Hang Chan, Hoi Ying Wong

  1. English
  2. ePUB (disponibile sull'app)
  3. Disponibile su iOS e Android
eBook - ePub

Handbook of Financial Risk Management

Simulations and Case Studies

Ngai Hang Chan, Hoi Ying Wong

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

An authoritative handbook on risk management techniques and simulations as applied to financial engineering topics, theories, and statistical methodologies

The Handbook of Financial Risk Management: Simulations and Case Studies illustrates the prac­tical implementation of simulation techniques in the banking and financial industries through the use of real-world applications.

Striking a balance between theory and practice, the Handbook of Financial Risk Management: Simulations and Case Studies demonstrates how simulation algorithms can be used to solve practical problems and showcases how accuracy and efficiency in implementing various simulation methods are indispensable tools in risk management. The book provides the reader with an intuitive understanding of financial risk management and deepens insight into those financial products that cannot be priced traditionally. The Handbook of Financial Risk Management also features:

  • Examples in each chapter derived from consulting projects, current research, and course instruction
  • Topics such as volatility, fixed-income derivatives, LIBOR Market Models, and risk measures
  • Over twenty-four recognized simulation models
  • Commentary, data sets, and computer subroutines available on a chapter-by-chapter basis

As a complete reference for practitioners, the book is useful in the fields of finance, business, applied statistics, econometrics, and engineering. The Handbook of Financial Risk Management is also an excellent text or supplement for graduate and MBA-level students in courses on financial risk management and simulation.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Handbook of Financial Risk Management è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Handbook of Financial Risk Management di Ngai Hang Chan, Hoi Ying Wong in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Commerce e Finance. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Editore
Wiley
Anno
2013
ISBN
9781118573549
Edizione
1
Argomento
Commerce
Categoria
Finance
1
An Introduction to Excel VBA
Excel VBA is probably the most commonly used computational tool in financial institutions, particularly when a new model is tested at a preliminary stage within a division. Many traders use Excel VBA to compute their trading strategies. Some data providers allow users to update information in real time using the Excel format. Excel VBA thus allows traders and risk managers to implement their solutions conveniently in real time.
1.1 HOW TO START EXCEL VBA
1.1.1 Introduction
VBA stands for Visual Basic for Application. It is a programming language that enhances the applicability of MS Excel by enabling the users to instruct Excel to perform tasks automatically. As most of the programs in this book are written in VBA, a brief introduction to VBA is provided in this opening chapter. Although we do not assume that readers have prior programming knowledge, programming experience in other languages would be helpful. For readers already familiar with VBA, this chapter serves as a refresher and quick reference. A list of the functions defined throughout the book can be found at the end of the chapter. These functions not only improve readability and traceability but also simplify the programs. For a more thorough understanding of Excel VBA, readers are referred to other books specializing in the matter. We believe, however, that this chapter is sufficient to allow a beginner to learn and execute the codes within the book.
MS Excel 2003 is used for illustration in this book. If readers are using another version of Excel, then they may find some minor differences. Nevertheless, if this is the first time for a reader to use Excel VBA, then set the macro security level to Medium or Low and restart Excel to enable the macros:
Click [Tools] → [Macro] → [Security] → [Medium] or [Low] (Fig. 1.1).
FIGURE 1.1 Set security level.
c01f001
MS Excel 2007 users should click the Options button to enable the macros.
1.1.2 Visual Basic Editor
VBE, which stands for Visual Basics Editor, is the environment in which macros are created, modified and managed. Macros (VBA procedures) are the code components that automate repetitive Excel tasks. A macro consists of codes that start with the keyword Sub or Function and end with the keywords End Sub or End Function. These codes are known as Sub and Function procedures. A module contains one or more macros, and a project contains one or more modules. A macro developed in VBE becomes part of a workbook and is saved at the same time that the workbook is saved. To open and edit macros in VBE, follow the procedure below.
1. Open VBE: Click [Tools] → [Macro] → [Visual Basic Editor] or press Alt + F11 (Fig. 1.2).
2. Insert module: In the project window on the left of the VBE, right-click one of the worksheets → [Insert] → [Module] (Fig. 1.3).
3. Edit in VBE: Type the codes in the code window.
4. Execute the program: In VBE, click [Run] → [Run Sub] and choose the macro to be compiled. Equivalently, in Excel, click [Tools] → [Macro] → [Macro] and choose the macro to be compiled.
FIGURE 1.2 Open VBE.
c01f002
FIGURE 1.3 Insert modules.
c01f003
1.1.3 The Macro Recorder
Excel offers a macro recorder that records the actions of the mouse and/or keyboard and translates them into VBA codes, thus allowing the designated actions to be repeated by running the macro again. Although the macro recorder is sometimes useful, it is unable to generate codes that perform looping, assign variables, or execute conditional statements, which are...

Indice dei contenuti

  1. Cover
  2. Series
  3. Title Page
  4. Copyright
  5. Preface
  6. Chapter 1: An Introduction to Excel VBA
  7. Chapter 2: Background
  8. Chapter 3: Structured Products
  9. Chapter 4: Volatility Modeling
  10. Chapter 5: Fixed-Income Derivatives I: Short-Rate Models
  11. Chapter 6: Fixed-Income Derivatives II: LIBOR Market Models
  12. Chapter 7: Credit Derivatives and Counterparty Credit Risk
  13. Chapter 8: Value-at-Risk and Related Risk Measures
  14. Chapter 9: The Greeks
  15. Appendix
  16. References
  17. Author Index
  18. Subject Index
  19. Wiley Handbooks in Financial Engineering and Econometrics
Stili delle citazioni per Handbook of Financial Risk Management

APA 6 Citation

Chan, N. H., & Wong, H. Y. (2013). Handbook of Financial Risk Management (1st ed.). Wiley. Retrieved from https://www.perlego.com/book/1002677/handbook-of-financial-risk-management-simulations-and-case-studies-pdf (Original work published 2013)

Chicago Citation

Chan, Ngai Hang, and Hoi Ying Wong. (2013) 2013. Handbook of Financial Risk Management. 1st ed. Wiley. https://www.perlego.com/book/1002677/handbook-of-financial-risk-management-simulations-and-case-studies-pdf.

Harvard Citation

Chan, N. H. and Wong, H. Y. (2013) Handbook of Financial Risk Management. 1st edn. Wiley. Available at: https://www.perlego.com/book/1002677/handbook-of-financial-risk-management-simulations-and-case-studies-pdf (Accessed: 14 October 2022).

MLA 7 Citation

Chan, Ngai Hang, and Hoi Ying Wong. Handbook of Financial Risk Management. 1st ed. Wiley, 2013. Web. 14 Oct. 2022.