Listed Volatility and Variance Derivatives – A Python–based Guide
Home > Business and Economics > Finance and accounting > Finance and the finance industry > Investment and securities > Listed Volatility and Variance Derivatives – A Python–based Guide
Listed Volatility and Variance Derivatives – A Python–based Guide

Listed Volatility and Variance Derivatives – A Python–based Guide

|
     5  |  8 Reviews 
5
4
3
2
1




Out of Stock


Notify me when this book is in stock
About the Book

Leverage Python for expert-level volatility and variance derivative trading Listed Volatility and Variance Derivatives is a comprehensive treatment of all aspects of these increasingly popular derivatives products, and has the distinction of being both the first to cover European volatility and variance products provided by Eurex and the first to offer Python code for implementing comprehensive quantitative analyses of these financial products. For those who want to get started right away, the book is accompanied by a dedicated Web page and a Github repository that includes all the code from the book for easy replication and use, as well as a hosted version of all the code for immediate execution. Python is fast making inroads into financial modelling and derivatives analytics, and recent developments allow Python to be as fast as pure C++ or C while consisting generally of only 10% of the code lines associated with the compiled languages. This complete guide offers rare insight into the use of Python to undertake complex quantitative analyses of listed volatility and variance derivatives. * Learn how to use Python for data and financial analysis, and reproduce stylised facts on volatility and variance markets * Gain an understanding of the fundamental techniques of modelling volatility and variance and the model-free replication of variance * Familiarise yourself with micro structure elements of the markets for listed volatility and variance derivatives * Reproduce all results and graphics with IPython/Jupyter Notebooks and Python codes that accompany the book Listed Volatility and Variance Derivatives is the complete guide to Python-based quantitative analysis of these Eurex derivatives products.

Table of Contents:
Preface 1 I Introduction to Volatility and Variance 3 1 Derivatives, Volatility and Variance 5 1.1 Option Pricing and Hedging 5 1.2 Notions of Volatility and Variance 7 1.3 Listed Volatility and Variance Derivatives 8 1.3.1 The US History 8 1.3.2 The European History 10 1.3.3 Volatility of Volatility Indexes 11 1.3.4 Products Covered in this Book 12 1.4 Volatility and Variance Trading 12 1.4.1 Volatility Trading 13 1.4.2 Variance Trading 14 1.5 Python as Our Tool of Choice 15 1.6 Quick Guide Through Rest of the Book 15 2 Introduction to Python 19 2.1 Python Basics 19 2.1.1 Data Types 19 2.1.2 Data Structures 21 2.1.3 Control Structures 23 2.1.4 Special Python Idioms 24 2.2 NumPy 27 2.3 matplotlib 32 2.4 pandas 36 2.4.1 pandas Data Frame class 36 2.4.2 Input-Output Operations 40 2.4.3 Financial Analytics Examples 43 2.5 Conclusions 48 3 Model-Free Replication of Variance 49 3.1 Introduction 49 3.2 Spanning with Options 49 3.3 Log Contracts 50 3.4 Static Replication of Realized Variance and Variance Swaps 51 3.5 Constant Dollar Gamma Derivatives and Portfolios 51 3.6 Practical Replication of Realized Variance 52 3.7 VSTOXX as Volatility Index 57 3.8 Conclusions 59 II Listed Volatility Derivatives 61 4 Data Analysis and Strategies 63 4.1 Introduction 63 4.2 Retrieving Base Data 63 4.2.1 EURO STOXX 50 Data 63 4.2.2 VSTOXX Data 65 4.2.3 Combining the Data Sets 67 4.2.4 Saving the Data 68 4.3 Basic Data Analysis 69 4.4 Correlation Analysis 72 4.5 Constant Proportion Investment Strategies 77 4.6 Conclusions 82 5 VSTOXX Index 83 5.1 Introduction 83 5.2 Collecting Option Data 84 5.3 Calculating the Sub-Indexes 91 5.3.1 The Algorithm 91 5.4 Calculating the VSTOXX Index 98 5.5 Conclusions 101 5.6 Python Scripts 103 5.6.1 index-collect-option-data.py 103 5.6.2 index-subindex-calculation.py 107 5.6.3 index-vstoxx-calculation.py 110 6 Valuing Volatility Derivatives 113 6.1 Introduction 113 6.2 The Valuation Framework 113 6.3 The Futures Pricing Formula 114 6.4 The Option Pricing Formula 115 6.5 Monte Carlo Simulation 118 6.6 Automated Monte Carlo Tests 123 6.6.1 The Automated Testing 123 6.6.2 The Storage Functions 126 6.6.3 The Results 128 6.7 Model Calibration 133 6.7.1 The Option Quotes 133 6.7.2 The Calibration Procedure 134 6.7.3 The Calibration Results 138 6.8 Conclusions 141 6.9 Python Scripts 141 6.9.1 srd-functions.py 141 6.9.2 srd-simulation-analysis.py 145 6.9.3 srd-simulation-results.py 148 6.9.4 srd-model-calibration.py 151 7 Advanced Modeling of the VSTOXX Index 155 7.1 Introduction 155 7.2 Market Quotes for Call Options 155 7.3 The SRJD Model 158 7.4 Term Structure Calibration 159 7.4.1 Futures Term Structure 159 7.4.2 Shifted Volatility Process 163 7.5 Option Valuation by Monte Carlo Simulation 164 7.5.1 Monte Carlo Valuation 165 7.5.2 Technical Implementation 165 7.6 Model Calibration 169 7.6.1 The Python Code 169 7.6.2 Short Maturity 171 7.6.3 Two Maturities 173 7.6.4 Four Maturities 175 7.6.5 All Maturities 176 7.7 Conclusions 181 7.8 Python Scripts 181 7.8.1 srjd-fwd-calibration.py 181 7.8.2 srjd-simulation.py 183 7.8.3 srjd-model-calibration.py 185 8 Terms of the VSTOXX and its Derivatives 191 8.1 The EURO STOXX 50 Index 191 8.2 The VSTOXX Index 192 8.3 VSTOXX Futures Contracts 192 8.4 VSTOXX Options Contracts 193 8.5 Conclusions 195 III Listed Variance Derivatives 197 9 Realized Variance and Variance Swaps 199 9.1 Introdution 199 9.2 Realized Variance 199 9.3 Variance Swaps 204 9.3.1 Definition of a Variance Swap 204 9.3.2 Numerical Example 205 9.3.3 Mark-to-Market 208 9.3.4 Vega Sensitivity 209 9.3.5 Variance Swap on the EURO STOXX 50 211 9.4 Variance vs. Volatility 216 9.4.1 Squared Variations 216 9.4.2 Additivity in Time 216 9.4.3 Static Hedges 218 9.4.4 Broad Measure of Risk 218 9.5 Conclusions 218 10 Variance Futures at Eurex 219 10.1 Introduction 219 10.2 Variance Futures Concepts 220 10.2.1 Realized Variance 220 10.2.2 Net Present Value Concepts 220 10.2.3 Traded Variance Strike 224 10.2.4 Traded Futures Price 224 10.2.5 Number of Futures 225 10.2.6 Par Variance Strike 225 10.2.7 Futures Settlement Price 225 10.3 Example Calculation for a Variance Future 225 10.4 Comparison of Variance Swap and Future 230 10.5 Conclusions 233 11 Trading and Settlement 235 11.1 Introduction 235 11.2 Overview of Variance Futures Terms 235 11.3 Intraday Trading 236 11.4 Trade Matching 239 11.5 Different Traded Volatilities 239 11.6 After the Trade Matching 241 11.7 Further Details 243 11.7.1 Interest Rate Calculation 243 11.7.2 Market Disruption Events 243 11.8 Conclusions 244 IV DX Analytics 245 12 DX Analytics An Overview 247 12.1 Introduction 247 12.2 Modeling Risk Factors 248 12.3 Modeling Derivatives 250 12.4 Derivatives Portfolios 253 12.4.1 Modeling Portfolios 253 12.4.2 Simulation and Valuation 255 12.4.3 Risk Reports 256 12.5 Conclusions 257 13 DX Analytics Square-Root Diffusion 259 13.1 Introduction 259 13.2 Data Import and Selection 259 13.3 Modeling the VSTOXX Options 262 13.4 Calibration of the VSTOXX Model 264 13.5 Conclusions 269 13.6 Python Scripts 269 13.6.1 dx-srd-calibration.py 269 14 DX Analytics Square-Root Jump Diffusion 275 14.1 Introduction 275 14.2 Modeling the VSTOXX Options 275 14.3 Calibration of the VSTOXX Model 279 14.4 Calibration Results 283 14.4.1 Calibration to 1 Maturity 283 14.4.2 Calibration to 2 Maturities 283 14.4.3 Calibration to 5 Maturities 285 14.4.4 Calibration without Penalties 285 14.5 Conclusions 288 14.6 Python Scripts 288 14.6.1 dx-srjd-calibration.py 288 Bibliography 303 Index 305


Best Sellers


Product Details
  • ISBN-13: 9781119167945
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Height: 229 mm
  • No of Pages: 368
  • Weight: 666 gr
  • ISBN-10: 1119167949
  • Publisher Date: 04 Nov 2016
  • Binding: Other digital
  • Language: English
  • Spine Width: 15 mm
  • Width: 152 mm


Similar Products

Add Photo
Add Photo

Customer Reviews

     5  |  8 Reviews 
out of (%) reviewers recommend this product
Top Reviews
Rating Snapshot
Select a row below to filter reviews.
5
4
3
2
1
Average Customer Ratings
     5  |  8 Reviews 
00 of 0 Reviews
Sort by :
Active Filters

00 of 0 Reviews
SEARCH RESULTS
1–2 of 2 Reviews
    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!

    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!


Sample text
Photo of
    Media Viewer

    Sample text
    Reviews
    Reader Type:
    BoxerLover2
    00 of 0 review

    Your review was submitted!
    Listed Volatility and Variance Derivatives – A Python–based Guide
    John Wiley & Sons Inc -
    Listed Volatility and Variance Derivatives – A Python–based Guide
    Writing guidlines
    We want to publish your review, so please:
    • keep your review on the product. Review's that defame author's character will be rejected.
    • Keep your review focused on the product.
    • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
    • Refrain from mentioning competitors or the specific price you paid for the product.
    • Do not include any personally identifiable information, such as full names.

    Listed Volatility and Variance Derivatives – A Python–based Guide

    Required fields are marked with *

    Review Title*
    Review
      Add Photo Add up to 6 photos
      Would you recommend this product to a friend?
      Tag this Book Read more
      Does your review contain spoilers?
      What type of reader best describes you?
      I agree to the terms & conditions
      You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

      CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

      These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


      By submitting any content to Bookswagon, you guarantee that:
      • You are the sole author and owner of the intellectual property rights in the content;
      • All "moral rights" that you may have in such content have been voluntarily waived by you;
      • All content that you post is accurate;
      • You are at least 13 years old;
      • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
      You further agree that you may not submit any content:
      • That is known by you to be false, inaccurate or misleading;
      • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
      • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
      • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
      • For which you were compensated or granted any consideration by any unapproved third party;
      • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
      • That contains any computer viruses, worms or other potentially damaging computer programs or files.
      You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


      For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


      All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

      Accept

      New Arrivals

      Inspired by your browsing history


      Your review has been submitted!

      You've already reviewed this product!