Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Chapter 11: Algorithmic Trading: Real Trading

Finally, learn how to Real Trade your own algorithmic trading strategy in live markets and real money using two strategy coding examples involving Regular and Bracket orders respectively. Also, learn to fetch execution logs and various types of Real Trading reports including P&L reports and statistics reports in real-time for your strategy.

List of Recipes in this chapter

  1. EMA-Regular-Order Strategy: Fetching the Strategy
  2. EMA-Regular-Order Strategy: Real Trading the Strategy
  3. EMA-Regular-Order Strategy: Fetching Real Trading Logs in real time
  4. EMA-Regular-Order Strategy: Fetching Real Trading Report - Profit-&-Loss Table
  5. EMA-Regular-Order Strategy: Fetching Real Trading Report - Statistics Table
  6. MACD-Bracket-Order Strategy: Fetching the Strategy
  7. MACD-Bracket-Order Strategy: Real Trading the Strategy
  8. MACD-Bracket-Order Strategy: Fetching Real Trading Logs in real time
  9. MACD-Bracket-Order Strategy: Fetching Real Trading Report - Profit-&-Loss Table
  10. MACD-Bracket-Order Strategy: Fetching Real Trading Report - Statistics Table

[Click here to VIEW Chapter 11 Jupyter Notebook on nbviewer]
[Click here to RUN Chapter 11 Jupyter Notebook in the cloud using binder. No installation needed on your end.]

Requirements

  • Python 3.7+
  • Additional Python Packages required for this chapter can be installed as follows -
$ source <virtualenv>           # optional, if you use a virtualenv
$ cd <path-to-this-folder>
$ pip install -r requirements.txt