Creating a trading system from scratch

How many lines of code you are comfortable with


  • Total voters
    61
Notebook converted to script.
You could run the trading_system.py script from your cmd for automatic order generation.
Download from github or clone it

The following features are added
  1. Automatic bhav copy download (no need to save file for the trading system)
  2. Option to diversify among sectors
  3. Script for linux and windows for automation
Rest of the development would be done based on the fastbt library
:up::up::up:
 
Last edited:

VJAY

Well-Known Member
Notebook converted to script.
You could run the trading_system.py script from your cmd for automatic order generation.
Download from github or clone it

The following features are added
  1. Automatic bhav copy download (no need to save file for the trading system)
  2. Option to diversify among sectors
  3. Script for linux and windows for automation
Rest of the development would be done based on the fastbt library
But where it is?I not getting it on github :confusedd::confusedd:
 

UberMachine

Well-Known Member
but where is this new note book?
It is not a new notebook. Its a python script - a python file (that ends with .py)
To run a python script
  1. Open command prompt
  2. Navigate to the folder
  3. Type python script_name.py
A python file is usually called a script if it has this code (something similar to this code) at the end of the file
Python:
if __name__ == "__main__":
    main()
 

Similar threads