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 (adapté aux mobiles)
  3. Disponible sur iOS et Android
eBook - ePub

Handbook of Financial Risk Management

Simulations and Case Studies

Ngai Hang Chan, Hoi Ying Wong

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

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.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Handbook of Financial Risk Management est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Handbook of Financial Risk Management par Ngai Hang Chan, Hoi Ying Wong en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Commerce et Finance. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Éditeur
Wiley
Année
2013
ISBN
9781118573549
Édition
1
Sous-sujet
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...

Table des matiĂšres

  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
Normes de citation pour 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.