61,99 €
Use powerful C++ algorithms and Object Oriented Programming (OOP) to aid in hedge fund decision making Low interest rates, overcrowded markets and greater regulatory oversight are just some of the many reasons it is close to impossible for hedge funds to draw competitive returns. The solution for many hedge fund managers, quantitative investment analysts and risk managers is to adopt new technologies, platforms and programming languages to better manage their risks and maximise the benefits of their return profiles. Hedge Fund Modelling and Analysis is a full course in the latest analytic strategies for hedge fund investing, complete with a one-of-a-kind primer on both C++ and object oriented programming (OOP). Covering both basic and risk-adjusted performance measures, this practitioner's guide enables you to manage risk easily and make the most of key statistics with simple and advanced analysis techniques. This highly anticipated third book in the widely used Hedge Fund Modelling and Analysis series is the only guide available for applying the powerful C++ language to revolutionise hedge fund trading. Even if you've never worked with code before, the focused overview of C++ gives you everything you need to navigate the technical aspects of object oriented programming, which enables you to build sophisticated analysis programs from small units of reusable code. This book is your breakthrough introduction to winning with hedge funds in the new reality of trading. Jumpstart your new approach to beating the markets with: * All the guidance and hands-on support you need to use quantitative strategies to optimise hedge fund decision-making. * Illustrative modelling exercises and worked-out problems demonstrating what to expect when assessing risk and return factors in the real world. * A companion website offering additional C++ programs, algorithms and data to download. Make reading Hedge Fund Modelling and Analysis your new routine and gain all the insight and relevant information you need to beat the markets.
Sie lesen das E-Book in den Legimi-Apps auf:
Seitenzahl: 276
Veröffentlichungsjahr: 2016
The Wiley Finance series contains books written specifically for finance and investment professionals as well as sophisticated individual investors and their financial advisors. Book topics range from portfolio management to e-commerce, risk management, financial engineering, valuation and financial instrument analysis, as well as much more. For a list of available titles, visit our website at www.WileyFinance.com.
Founded in 1807, John Wiley & Sons is the oldest independent publishing company in the United States. With offices in North America, Europe, Australia and Asia, Wiley is globally committed to developing and marketing print and electronic products and services for our customers' professional and personal knowledge and understanding.
PAUL DARBYSHIRE DAVID HAMPTON
This edition first published 2017 © 2017 Paul Darbyshire and David Hampton
Registered officeJohn Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex, PO19 8SQ, United Kingdom
For details of our global editorial offices, for customer services and for information about how to apply for permission to reuse the copyright material in this book please see our website at www.wiley.com.
The right of the author to be identified as the author of this work has been asserted in accordance with the Copyright, Designs and Patents Act 1988.
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 or otherwise, except as permitted by the UK Copyright, Designs and Patents Act 1988, without the prior permission of the publisher.
Wiley publishes in a variety of print and electronic formats and by print-on-demand. Some material included with standard print versions of this book may not be included in e-books or in print-on-demand. If this book refers to media such as a CD or DVD that is not included in the version you purchased, you may download this material at http://booksupport.wiley.com. For more information about Wiley products, visit www.wiley.com.
Designations used by companies to distinguish their products are often claimed as trademarks. All brand names and product names used in this book are trade names, service marks, trademarks or registered trademarks of their respective owners. The publisher is not associated with any product or vendor mentioned in this book.
Limit of Liability/Disclaimer of Warranty: While the publisher and author have used their best efforts in preparing this book, they make no representations or warranties with respect to the accuracy or completeness of the contents of this book and specifically disclaim any implied warranties of merchantability or fitness for a particular purpose. It is sold on the understanding that the publisher is not engaged in rendering professional services and neither the publisher nor the author shall be liable for damages arising herefrom. If professional advice or other expert assistance is required, the services of a competent professional should be sought.
Library of Congress Cataloging-in-Publication Data is available
A catalogue record for this book is available from the British Library.
ISBN 978-1-118-87957-3 (hbk) ISBN 978-1-118-87955-9 (ebk) ISBN 978-1-118-87956-6 (ebk) ISBN 978-1-118-87954-2 (ebk)
Cover Design: Wiley Cover Images: Top Image: ©iStock.com/agsandrew Bottom Image: ©iStock.com/Storman
Mum and Dad,
Whose love and support encourages me to achieve success.
– P.D.
For Marie-Christine, Juliette and Antoine.
– D.H.
Preface
C++ Source Code
Hypothetical Hedge Fund Data
Book Website
Chapter 1: Essential C++
1.1 A Brief History of C and C++
1.2 A Basic C++ Program
1.3 Variables
1.4 Operators
1.5 Input and Output
1.6 Control Structures
1.7 Arrays
1.8 Vectors
1.9 Functions
1.10 Object Oriented Programming
Notes
Chapter 2: The Hedge Fund Industry
2.1 What are Hedge Funds?
2.2 The Structure of a Hedge Fund
2.3 The Global Hedge Fund Industry
2.4 Specialist Investment Techniques
2.5 Recent Developments for Hedge Funds
Notes
Chapter 3: Hedge Fund Data Sources
3.1 Hedge Fund Databases
3.2 Major Hedge Fund Indices
3.3 Database and Index Biases
3.4 Benchmarking
Notes
Chapter 4: Statistical Analysis
4.1 The Stats Class
4.2 The Utils Class
4.3 The Import Class
4.4 Basic Performance Plots
4.5 Probability Distributions
4.6 Probability Density Function
4.7 Cumulative Distribution Function
4.8 The Normal Distribution
4.9 Visual Tests for Normality
4.10 Moments of a Distribution
4.11 Covariance and Correlation
4.12 Linear Regression
Notes
Chapter 5: Performance Measurement
5.1 The PMetrics Class
5.2 The Intuition Behind Risk-Adjusted Returns
5.3 Absolute Risk-Adjusted Return Metrics
5.4 The Sharpe Ratio
5.5 Market Models
5.6 The Minimum Acceptable Return
Notes
Chapter 6: Mean-Variance Optimisation
6.1 The Optimise Class
6.2 Mean-Variance Analysis
Notes
Chapter 7: Market Risk Management
7.1 The RMetrics Class
7.2 Value-at-Risk
7.3 Traditional VaR Methods
7.4 Modified VaR
7.5 Expected Shortfall
7.6 Extreme Value Theory
Notes
References
Index
EULA
Preface
Table P.1
Chapter 1
Table 1.1
Table 1.2
Table 1.3
Table 1.4
Table 1.5
Table 1.6
Table 1.7
Chapter 2
Table 2.1
Table 2.2
Table 2.3
Chapter 3
Table 3.1
Table 3.2
Table 3.3
Table 3.4
Table 3.5
Table 3.6
Chapter 4
Table 4.1
Chapter 7
Table 7.1
Table 7.2
Table 7.3
Cover
Table of Contents
Preface
xi
xiv
xv
1
2
3
4
5
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
39
40
41
42
43
44
45
46
47
49
51
52
54
55
61
62
64
66
67
69
71
72
73
74
75
76
77
79
80
81
82
83
84
85
86
87
88
89
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
111
112
113
114
115
116
117
119
120
123
124
126
127
128
130
131
132
133
134
135
136
137
138
139
141
142
143
145
146
147
150
155
156
158
159
160
163
164
165
166
167
168
169
170
171
173
174
175
177
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
196
197
198
199
202
203
205
207
208
211
212
213
214
215
216
217
220
226
227
228
229
230
231
232
241
242
244
245
246
247
248
249
250
251
252
253
254
255
257
259
261
262
263
264
266
267
268
271
272
273
274
275
277
277
278
279
280
281
282
283
284
285