Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Chapter 10: Algorithmic Trading: Paper Trading

Learn how to Paper Trade your own algorithmic trading strategy in live markets using two strategy coding examples involving Regular and Bracket orders respectively. Also, learn to fetch execution logs and various types of Paper Trading reports including P&L report, statistics report and order history log 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: Paper Trading the Strategy
  3. EMA-Regular-Order Strategy: Fetching Paper Trading Logs in real time
  4. EMA-Regular-Order Strategy: Fetching Paper Trading Report - Profit-&-Loss Table
  5. EMA-Regular-Order Strategy: Fetching Paper Trading Report - Statistics Table
  6. EMA-Regular-Order Strategy: Fetching Paper Trading Report - Order History
  7. MACD-Bracket-Order Strategy: Fetching the Strategy
  8. MACD-Bracket-Order Strategy: Paper Trading the Strategy
  9. MACD-Bracket-Order Strategy: Fetching Paper Trading Logs in real time
  10. MACD-Bracket-Order Strategy: Fetching Paper Trading Report - Profit-&-Loss Table
  11. MACD-Bracket-Order Strategy: Fetching Paper Trading Report - Statistics Table
  12. MACD-Bracket-Order Strategy: Fetching Paper Trading Report - Order History

[Click here to VIEW Chapter 10 Jupyter Notebook on nbviewer]
[Click here to RUN Chapter 10 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