Gwill / Mastering-Python-for-Finance-Second-Edition-1

Mastering Python for Finance – Second Edition, published by Packt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

$5 Tech Unlocked 2021!

Buy and download this Book for only $5 on PacktPub.com

If you have read this book, please leave a review on Amazon.com. Potential readers can then use your unbiased opinion to help them make purchase decisions. Thank you. The $5 campaign runs from December 15th 2020 to January 13th 2021.

Mastering Python for Finance - Second Edition

Mastering Python for Finance - Second Edition

This is the code repository for Mastering Python for Finance - Second Edition, published by Packt.

Implement advanced state-of-the-art financial statistical applications using Python

What is this book about?

The second edition of Mastering Python for Finance will guide you through carrying out complex financial calculations practiced in the industry of finance by using next-generation methodologies. You will master the Python ecosystem by leveraging publicly available tools to successfully perform research studies and modeling, and learn to manage risks with the help of advanced examples.

This book covers the following exciting features:

  • Solve linear and nonlinear models representing various financial problems
  • Perform principal component analysis on the DOW index and its components
  • Analyze, predict, and forecast stationary and non-stationary time series processes
  • Create an event-driven backtesting tool and measure your strategies
  • Build a high-frequency algorithmic trading platform with Python

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Errata

  • Page 51 - A minimization example with integer programming (3rd sentence): Dealer Y charges $450 per contract plus a transaction fee of $2,000. should be Dealer Y charges $350 per contract plus a transaction fee of $2,000.

Instructions and Navigations

All of the code is organized into folders. For example,

The code will look like the following:

In [ ]:
%matplotlib inline
import quandl
quandl.ApiConfig.api_key = QUANDL_API_KEY
df = quandl.get('EURONEXT/ABN.4')
daily_changes = df.pct_change(periods=1)
daily_changes.plot();

Following is what you need for this book: If you are a financial or data analyst or a software developer in the financial industry who is interested in using advanced Python techniques for quantitative methods in finance, this is the book you need! You will also find this book useful if you want to extend the functionalities of your existing financial applications by using smart machine learning techniques. Prior experience in Python is required.

With the following software and hardware list you can run all code files present in the book (Chapter 1-11).

Software and Hardware List

Chapter Software required OS required
1-10 Python 3.7 Windows, Mac OS X, and Linux (Any)
11 Python 3.6 Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Author

James Ma Weiming is a software engineer based in Singapore. His studies and research are focused on financial technology, machine learning, data sciences, and computational finance. James started his career in financial services working with treasury fixed income and foreign exchange products, and fund distribution. His interests in derivatives led him to Chicago, where he worked with veteran traders of the Chicago Board of Trade to devise high-frequency, low-latency strategies to game the market. He holds an MS degree in finance from Illinois Tech's Stuart School of Business in the United States and a bachelor's degree in computer engineering from Nanyang Technological University.

Other books by the authors

Suggestions and Feedback

Click here if you have any feedback or suggestions.

About

Mastering Python for Finance – Second Edition, published by Packt

License:MIT License


Languages

Language:Jupyter Notebook 100.0%