Book Description
Over the next few years, the proprietary trading and hedge fund industries will migrate largely to automated trade selection and execution systems. Indeed, this is already happening. While several finance books provide C++ code for pricing derivatives and performing numerical calculations, none approaches the topic from a system design perspective. This book will be divided into two sectionsprogramming techniques and automated trading system ( ATS ) technologyand teach financial system design and development from the absolute ground up using Microsoft Visual C++.NET 2005. MS Visual C++.NET 2005 has been chosen as the implementation language primarily because most trading firms and large banks have developed and continue to develop their proprietary algorithms in ISO C++ and Visual C++.NET provides the greatest flexibility for incorporating these legacy algorithms into working systems. Furthermore, the .NET Framework and development environment provide the best libraries and tools for rapid development of trading systems.
The first section of the book explains Visual C++.NET 2005 in detail and focuses on the required programming knowledge for automated trading system development, including object oriented design, delegates and events, enumerations, random number generation, timing and timer objects, and data management with STL.NET and .NET collections. Furthermore, since most legacy code and modeling code in the financial markets is done in ISO C++, this book looks in depth at several advanced topics relating to managed/unmanaged/COM memory management and interoperability. Further, this book provides dozens of examples illustrating the use of database connectivity with ADO.NET and an extensive treatment of SQL and FIX and XML/FIXML. Advanced programming topics such as threading, sockets, as well as using C++.NET to connect to Excel are also discussed at length and supported by examples.
The second section of the book explains technological concerns and design concepts for automated trading systems. Specifically, chapters are devoted to handling real-time data feeds, managing orders in the exchange order book, position selection, and risk management. A .dll is included in the book that will emulate connection to a widely used industry API ( Trading Technologies, Inc.s XTAPI ) and provide ways to test position and order management algorithms. Design patterns are presented for market taking systems based upon technical analysis as well as for market making systems using intermarket spreads.
As all of the chapters revolve around computer programming for financial engineering and trading system development, this book will educate traders, financial engineers, quantitative analysts, students of quantitative finance and even experienced programmers on technological issues that revolve around development of financial applications in a Microsoft environment and the construction and implementation of real-time trading systems and tools.
* Teaches financial system design and development from the ground up using Microsoft Visual C++.NET 2005.
* Provides dozens of examples illustrating the programming approaches in the book
* Chapters are supported by screenshots, equations, sample Excel spreadsheets, programming code and interactive CDROM
Customer Reviews:
great book for wall street developers.......2007-06-29
Unlike some other comments about this book, the intended readers are serious developers who have not started or just begining to use .Net 2005 framework. That is why some readers do not like this book.
A pure programmer do not need to read this book.
A pure quant strategist do not need this book.
A network specialist do not need this book.
It is only good for the intended readers.
Excellent resource to build Automatic Trading Systems.......2007-04-22
I read some of the other reviews and was moved to write my own evaluation as those reviews were mistreating this book.
This book is NOT fiction nor is it a comprehensive reference on C++.Net. so for someone trying to read this book from cover to cover will not feel like adding much value. Also the title says it clearly that the book includes an introduction to VC++.Net (just want to stress that the book is not meant to teach you the language in and out)
The value in this book is to understand the typical challenges that financial trading systems offer and some really insightful examples on how to solve them. This book deals with everyday problems that any programmer will face when building his/her own trading system (Automated/semi-automated). There is a lot of good advice on Building Automatic Trading Systems all compiled into one resource.
Like I mentioned before the book is not a comprehensive reference on C++.Net(Use MSDN for that) and neither is it verbose, but simply a bridge between building trading systems and programming. The introduction to VC++.Net is a quick read even if you have no or basic programming skills and only serves as an introduction to the language with a quick reference of the concepts.
I love this book and appreciate some of the issues that it addresses. It also better prepared me for the job that I got after taking Professor Van Vliet's class and using this book for the same.
I recommend this book for all those developers (or beginners) who are dealing with financial markets and have the need to build ATS.
Excellent CONCISE Treatment of C++.Net.......2007-04-13
I feel I am qualified to review this book as I have been a student of Professor Van Vliet's at IIT-Chicago. I have taken his courses in ANSI C++,VB.Net,and developing automated trading systems using C++.Net. I took the course in C++.Net/Automated Trading Systems using the notes that were the basis for this book.
A few of the previous reviews were way off the mark in my opinion. One of Professor Van Vliet's strengths and approach to programming is to develop concepts through simple examples. In this book, as in all his classes, he gives small but complete programs to learn concepts. Most books, e.g. Deitel, introduce concepts with 2-3 page programs where you get lost in what you are trying to learn. Van Vliet emphasizes that programming is learned by doing, not just by reading. If you just plan to read the book and not actually implement the programs then maybe it's value is limited. But this is not how most people REALLY learn programming. You have to get your hands dirty.
Previous reviews are way off the mark in terms of substance as well. You just have to go to MSDN's documentation on C++.Net to see that Van Vliet includes a lot of helpful information that is hard to find in other books and on the NET. For example, for those who care to pay attention, he does an excellent treatment on how to get to methods in objects stored in hashtables and sorted lists. Almost all other discussions of hashtables use very primitive hashtables where you only store a key and a simple value (like an integer or string) . Van Vliet actually shows ways, for example, to create a Stock Class with all the attributes of a stock and then store the stock objects in a hashtable that would represent a portfolio. (this is not the example in the book but he clearly shows you how to do this). Then he shows you how to get at the methods using a dynamic cast or static cast (with the advent of generics in VS 2005 there are now even better ways in some instances).
To give further evidence of his building block approach and the substance in the book, Van Vliet towards the end of the book develops a single-threaded algorithmic trading system and then uses a producer-consumer semaphore model to show you how to create a multi-threaded algorithmic trading system. Where else can you find this in the literature? He even created his own API, Trader API, that is very similar to that of Trading Technologies's XTAPI, so programmers can learn how to connect and use an API.
Finally, through my study with Van Vliet I have been able to write multi-threaded trading programs using XTAPI, write a stat arb program for equity trading that searches a large database of equities, write technical trading systems, and write factor model programs for equity trading. In large part because of what I learned from Professor Van Vliet at IIT I have been able to be employed by a local hedge fund. Whenever I program his books are with me for reference purposes.
J.S. Haworth
April 2007
Unreadable...........2007-04-02
Strong regret that I spent 80$ on this book. The backcover said this book was suitable for people who wanted to learn c++.net with a focus on trading systems, however the intro to the language itself is very very light.
It starts directly with pages of code (that you can find on the cd...) explaining how to manage threads, processes, time etc etc.
I had the feeling that this book has no real beginning nor real ending and that chapters can be all mixed up, it won't change anything.
On the other side, I am maybe too beginner for it. Maybe this suitable for people who want to transfer their system from one language to c++.net.
Excellent book for beginners to intermediate develepers.......2007-03-23
I thought this was an excellent book for beginner and intermediate developers. It takes you through the building blocks necessary to create a fully functioning automated trading system. Especially useful for programmers in other languages that are looking to transfer their code to C++.net. I've have 7 years of experience in financial programming and many of the problems addressed in this book, I deal with on a daily basis.
Average customer rating:
- Pithecanthropus
- Excellent practical book for the beginners
- Great help for trainers
- Not recommended for anyone who has previous experience
- Excellent Book
|
An Introduction to Foreign Exchange & Money Markets (Reuters Financial Training Series)
London, UK Reuters Limited
Manufacturer: John Wiley & Sons
ProductGroup: Book
Binding: Hardcover
General
| Popular Economics
| Business & Investing
| Subjects
| Books
Money & Monetary Policy
| Economics
| Business & Investing
| Subjects
| Books
Public Finance
| Economics
| Business & Investing
| Subjects
| Books
Foreign Exchange
| Finance
| Business & Investing
| Subjects
| Books
General
| Business & Investing
| Subjects
| Books
Futures
| Investing
| Business & Investing
| Subjects
| Books
General
| Investing
| Business & Investing
| Subjects
| Books
Options
| Investing
| Business & Investing
| Subjects
| Books
General
| Business & Finance
| New & Used Textbooks
| Stores
| Books
Investing
| Finance
| Business & Finance
| New & Used Textbooks
| Stores
| Books
All Titles
| Qualifying Textbooks - Fall 2007
| Stores
| Books
Business & Investing
| Qualifying Textbooks - Fall 2007
| Stores
| Books
Look Inside Business Books
| Trip
| Specialty Stores
| Books
Look Inside Nonfiction Books
| Trip
| Specialty Stores
| Books
ASIN: 047183128X |
Book Description
The Reuters Financial Training Series An Introduction to Foreign Exchange & Money Markets A new concept in financial education training, An Introduction to Foreign Exchange & Money Market is guides novices through the intricacies of the world's wealthiest capital exchange markets. This book sets out to give a clear understanding of how and why these markets function, and explains the associated jargon. Readers will be able to take a more detailed look at Money Market and Foreign Exchange instruments and will be able to examine, in particular, the parameters which must be defined in order to place a value on these instruments, together with basic valuation techniques. Key features include:
* Introductory sections defining terms and giving background to theories
* Examples and calculations of various types of foreign exchange and money market transactions and instruments
* Summaries and overviews at the end of each chapter recapitulating key points and definitions
* Quick quiz questions and answers to reinforce learning
* Further resources which point to other books, articles and internet tools to widen readers' comprehension and entrench their foundation in the subject.
Each book in the series is supported by the Wiley-Reuters Financial Training web site (www.wiley-rft.reuters.com). This regularly updated site offers a range of screens taken directly from the Reuters terminal, information on professional exams, web links to key institutional finance web sites and much more. This book will be of particular interest to novice traders, investors and trainers in financial institutions looking for a key introductory text. Endorsed by ACI Education, the educational arm of ACI - The Financial Markets Association, the book provides a comprehensive study for anyone and everyone involved in Foreign Exchange and Money Markets.
Customer Reviews:
Pithecanthropus.......2001-09-10
The book contains a wealth of practical information however there are errors in the mathematical formulas, dates and etc. This is most frustrating from a reader point of view and dampened the confidence in the material presented. However, it is relatively a easy read for general understanding of the money and FX markets. I hope the author does a more thorough check in the future edition in order to do this book justice.
Excellent practical book for the beginners.......2000-10-02
This is a great practical book for the beginners and intermediate people in the market. When I started in the market as a business analyst, with no prior experience, it was a confused world of trading. After reading this book, things make much more sense. In addition, the book explains brief analytics on how to price and when and why certain instruments will be used for trading. It is geared towards trading. Refer to other books if you are more interested in middle/back office functionality (like settlements, P&L calc, risk management etc.)
Great help for trainers.......2000-07-26
Many a times, trainers in the banking industry find it very difficult to teach complex subjects like foreign exchange and money markets to relatively junior guys. This book will prove to be of great help to those trainers. Probably the first ever attempt in this subject.( Luca's text book can easily be replaced by this book just because of its excellant padagogy). Hope other titles advertised by RFT will also become available soon, specially the one on Risk Management.
Not recommended for anyone who has previous experience.......1999-08-12
If you have some experience of foreign exchange trading, this book is not for yourself. You would learn everything written here within the first six weeks of your job as a foreign exchange trader.
However, this book is great for the REAL beginners who want to learn about foreign exchange from the very beginning and for trainers or teachers who teach those who has little knowledge the foreign exchange. This book starts from explaining what bids and asks are and explains so far up to the mechanics of foreign exchange derivatives. The most remarkable feature of this book is illustrations of deal components and market segments showing how each deal components and markets are related to each other. Detail explanation on different market conventions applied to different currencies is also useful. Short questions at end of chapters are good to review what you should take away from the chapters.
Excellent Book.......1999-07-09
This book is excellent for beginner as well as for advance. It covers all the details right from bottom to top in a very lucid language. It also covers enough diagrams that explains the subject very well.
Book Description
This text contains the strengths of the authors' money and banking text: they bring in a historical and evolutionary perspective, provide a global emphasis where appropriate, and cover all the topics common to traditional markets and institutions texts. In addition, they emphasize a flow-of-funds perspective and the text ends with a section on monetary policy. The text provides balanced coverage of the theories, policies, and institutions in a conversational style, avoiding complex models and high level mathematics, making it a student-friendly text with many unique features that offer additional explanation of concepts, analyses, and historical background. The text emphasizes how structural change, globalization, innovation, and technology affect the financial environment, with attention to how and why institutions and markets evolve.
Book Description
Introduction to the Economics and Mathematics of Financial Markets fills the longstanding need for an accessible yet serious textbook treatment of financial economics. The book provides a rigorous overview of the subject, while its flexible presentation makes it suitable for use with different levels of undergraduate and graduate students. Each chapter presents mathematical models of financial problems at three different degrees of sophistication: single-period, multi-period, and continuous-time. The single-period and multi-period models require only basic calculus and an introductory probability/statistics course, while an advanced undergraduate course in probability is helpful in understanding the continuous-time models. In this way, the material is given complete coverage at different levels; the less advanced student can stop before the more sophisticated mathematics and still be able to grasp the general principles of financial economics.
The book is divided into three parts. The first part provides an introduction to basic securities and financial market organization, the concept of interest rates, the main mathematical models, and quantitative ways to measure risks and rewards. The second part treats option pricing and hedging; here and throughout the book, the authors emphasize the Martingale or probabilistic approach. Finally, the third part examines equilibrium models -- a subject often neglected by other texts in financial mathematics, but included here because of the qualitative insight it offers into the behavior of market participants and pricing.
Customer Reviews:
Good but far from perfection.......2007-09-05
I used this book as a TA for a course in introduction to finance for first-year graduate students last semester. Proofs and mathematical expositions are quite rigorous. The contents cover most of the importan parts in modern theories of finance. It is quite self-contained with introduction to Brownian Motion and Ito's lemma. However, its shortcoming is much like other books in modern advanced economics - it fails to capture the intuition behind those fancy expositions. Although brownian motion, Ito's calculus and fundamental theorems of finance are thoroughly introduced, it fails to explain students the basic ideas behind these concepts. Because I used this book to teach students as a TA, I know that without any guidance students are very likely to be lost in the mathematical expositions in these books. Moreover, this book has a lot of typos! Be careful! Overall, this is quite a good book. The level is appropriate for first-year graduate course in finance. Although the level is appropriate, it is far from being a good textbook.
Above Average but not Excellent.......2005-08-21
This book is easier to read than Duffie's Dynamic Asset Pricing Theory and I would say is comparable to that of Bjork's Arbitrage Theory in Continuous-Time. The good thing about this book is that it covers the major topics required for the understanding of financial markets, i.e. stocks, bonds, interest rates, risk, dynamic programming, options, etc. One thing that I did not like is that in the middle of the section they switch for discrete-time to continuous-time and then back and forth again. It would have been better, in my opinion, to do discrete-time as a whole and then a separate section in continuous-time. In addition, the solutions manual that accompany does not seem like it's worth the $20+ you pay for it. It's extremely thin and contains solutions to "some" problems only.
Lucid!.......2004-05-25
Excellent, highly readable, solid and intuitive. Lucid on all aspects of Math Finance, with both Econ and Math theory in mind. This can be a good replacement for Hull.
Book Description
1
Statistics of Financial Markets presents in a vivid yet concise style the necessary statistical and mathematical background for Financial Engineers and introduces to the main ideas in mathematical finance and financial statistics. Topics covered are, among others, option valuation, financial time series analysis, value-at-risk, copulas, and statistics of the extremes.
The underlying structure of the book, i.e. basic tools in mathematical finance, financial time series analysis and applications to given problems of financial markets, allows the book to be used as a basis for lectures, seminars and even crash courses on the topic.
A full set of transparencies can be downloaded using the registration card at the back of the book. The registration card also allows the use of the e-book version with links to world wide computing servers.
Customer Reviews:
Great intutive introduction to stochastic calculus.......2006-06-17
This book was such a relief after going through tens of books/lectures notes on stochastic calculus. Most math books give the theory behind Ito calculus (martingales, measure theory etc.), but fail to give the motivation and reasoning behind abstract definitions. This book does an excellent job in deriving many seemingly-complicated math formulas (or, theorems) using intuitive terms. It is an excellent read for people who have a reasonable background in probability theory, and are wishing to learn stochastic calculus (plus finance). I strongly recommend it to anyone who wants to learn the rudiments of Ito integral and see its applications in finance.
Great introduction to the Value at Risk measures.......2005-10-14
Got the friendly yellow paperback version. The book is in three major parts; Options, Time series and then Value at Risk.
The first section starts out well with an overview of Stochastic Processes and then moves on to Stochastic Integrals and Differential Equations. All of this is motivation to help with the pricing of Options, starting with European, then American and moving onto Exotics and Bond Options. It covers all the major points, though it is a little limited in the Exotics, it does have a good references to more thorough works.
The second section on time series works with ARIMA, ARCH and GARCH models.
The third section (labeled Selected Financial Applications) is mostly about the VAR though is has some really good commentary on the Volatility of Option Portfolios.
An added bonus is that you can download the PDF version of the book, and all the data for the examples from the web, with quite a neat one-time license.
I would recommend this book to people needing a good overview of the subjects listed above, and as a handy reference.
Book Description
This book offers a broad and balanced introduction to financial markets across the world, describing the various financial sectors in clear, easy to understand terms. The book provides comprehensive coverage of commercial and investment banking, foreign exchange, money and bond markets, trade finance, stock markets, options, futures, and other derivatives products--making it the ideal primer for those who require a basic understanding of, or who are new to, the world of finance.
Customer Reviews:
Quality book - great summary.......2006-01-09
This book gives a good summary of several important concepts related to the financial markets. It is a truly introductory level book but it is highly recommended if you are looking for a complete overview to fill up the gaps in your basic knowledge. Highly readable, even for people without a formal background in economoy but with a basic practical knowledge of the financial markets.
One negative point concerns paragraphs where the history of certain concepts is described or where practical examples are given, applying to different countries in the world : these are often too elaborated without any clear added value.
This book is also recommended by 'The Economist' magazine.
Apparently this book rocks........2004-02-21
When an engineering student completely unfamiliar with economics can use this book to prepare a comprehensive collection of lectures for a large group of Ph.D.-level students in Beijing during the transcontinental flight, it is obvious that this book is extremely capable of teaching. Read the news article:
http://www.telegraph.co.uk/news/main.jhtml?xml=/news/2004/02/19/nchina19.xml&sSheet=/news/2004/02/19/ixnewstop.html
However, that makes you question the complexity of the profession and the necessity of the professors teaching it, because if someone can effectively become an expert one a plane trip, it can't be that complicated. That, or Mr. Valdez is a genius who knows how to take something enormously complex and transform it into something incredibly simple.
Truly introductory.......2003-10-01
Although the book by Valdez is truly introductory it does give a good overview of financial markets. It is a pity that Black and Scholes' model or binomial trees are mentioned as too difficult. Different option strategies are mentioned but not explained. One or two graphs would have made it a lot clearer, but as the writer indicates on several occasions, that is outside the scope of this book. For a more thorough understanding of financial markets this book is a good introduction but not enough to really get a good idea.
Book Description
Within the economist's abstraction of a "Perfect Market" it is assumed that all agents have access to the same timely, accurate and free information, and as a result allocative efficiency will be achieved. In practice this rarely happens and in most cases agents have access to different levels of information so that transactions are characterized by asymmetric information. This book presents the first integrated treatment of asymmetric information as both a macroeconomic and microeconomic phenomenon in financial markets.
Download Description
Within the abstraction of a 'Perfect Market' it is assumed that all agents have access to the same timely, accurate and free information, and as a result allocative efficiency will be achieved. In practice this rarely happens and in most cases agents have access to different levels of information so that transactions are characterised by asymmetric information. This book presents the first integrated treatment of asymmetric information as both a macroeconomic and microeconomic phenomenon in financial markets. Subjects include: protecting against asymmetric information, information problems and corporate financing, dividend policy, the financial system and economic growth, business cycles, and international capital flows.
Customer Reviews:
Excellent text.......2004-05-17
This is an excellent text that puts in an intuitive level concepts that usually belong to much more advanced books or technical journals. It should be attractive to both graduate students in economics looking for an intuitive presentation as well as to business or finance Master's students with little background since the book keeps a discursive style with lots of examples.
Book Description
The term "project finance" is now being used in almost every language in every part of the world. It is the solution to infrastructure, public and private venture capital needs. It has been successfully used in the past to raise trillions of dollars of capital and promises to continue to be one of the major financing techniques for capital projects in both developed and developing countries.
Project Finance aims to provide:
*Overview of project finance
*Understanding of the key risks involved in project finance and techniques for mitigating risk
*Techniques for effective evaluation of project finance from both a financial and credit perspective
The author differentiates between recourse and non-recourse funding, tackles the issues of feasibility, identifies the parties normally involved with project finance plans, and details techniques for realistic cash flow preparation.
*Inspired by basic entry level training courses that have been developed by major international banks worldwide
*Will enable students, and those already in the finance profession, to gain an understanding of the basic information and principles of project finance
*Includes questions with answers, study topics, practical 'real world' examples and an extensive bibliography
Customer Reviews:
Disappointing.......2007-02-24
The editor must have failed to read page 2 paragraph 4 that rails against the goal of project finance, namely to "make government irrelevant and achieve a two-tier society where government panders to the marginalized and infrastructure development and exploitation (!!!??) are handed over to private capital, free from the encumbrances of the electoral mandates". With that kind of bias set forward, why continue reading??
Basically, a set of powerpoint slides bound in a booklet.
Book Description
There are many textbooks for business students that provide a systematic, introductory development of the economics of financial markets. However, there are as yet no introductory textbooks aimed at more easily daunted undergraduate liberal arts students. Introduction to the Economics of Financial Markets fills this gap by providing an extremely accessible introductory exposition of how economists analyze both how, and how well, financial markets organize the intertemporal allocation of scarce resources. The central theme is that the function of a system of financial markets is to enable consumers, investors, and managers of firms to effect mutually beneficial intertemporal exchanges. James Bradfield uses the standard concept of economic efficiency (Pareto Optimality) to assess the efficacy of the financial markets. He presents an intuitive, and introductory, understanding of the primary theoretical and empirical models that economists use to analyze financial markets, and then uses these models to discuss implications for public policy. Students who use this text will acquire an understanding of the economics of financial markets that will enable them to read, with some sophistication, articles in the public press about financial markets and about public policy toward those markets. The book is addressed to undergraduate students in the liberal arts, but will also be useful for undergraduate and beginning graduate students in programs of business administration who want an understanding of how economists assess financial markets against the criteria of allocative and informational efficiency.
Books:
- Business Analysis and Valuation: Using Financial Statements, Text and Cases
- Business Analysis and Valuation: Using Financial Statements, Text and Cases
- Business Analysis and Valuation: Using Financial Statements, Text and Cases
- Client at the Core: Marketing and Managing Today's Professional Services Firm
- Contemporary Business and E-Commerce Law: The Legal, Global, Digital and Ethical Environment (4th Edition)
- Corporate Finance: A Valuation Approach
- Cost Accounting (12th Edition) (Charles T Horngren Series in Accounting)
- Cost Accounting (12th Edition) (Charles T Horngren Series in Accounting)
- Cost Accounting (12th Edition) (Charles T Horngren Series in Accounting)
- Cost Accounting (12th Edition) (Charles T Horngren Series in Accounting)
Books Index
Books Home
Recommended Books
- Search Engine Optimization
- History: Fiction or Science
- Creating Value in the Network Economy
- CIMA Exam Practice Kit Financial Accounting and Tax Principles, Third Edition: 2007 edition
- History: Fiction or Science
- Holiday in Death
- Hyperwars: 11 Strategies for Survival and Profit in the Era of Online Business
- Hidden Financial Risk: Understanding Off Balance Sheet Accounting
- Economics and Social Interaction: Accounting for Interpersonal Relations
- Fear And Miss Betony