kylejusticemagnuson / pyti

Python library of various financial technical indicators
MIT License
646 stars 169 forks source link

How to use "tox"? #13

Closed Spash194 closed 6 years ago

Spash194 commented 6 years ago

Good day, please can you write more detailed manual how to backtest all your indicator together via tox?

  1. For example, i download your project to PC as zip file, then unzip.

  2. Then go to destination folder, and run there cmd, in cmd i write what? 'tox' -> i get an error: ""tox" is not internal or external command, operable program or batch file."

  3. I feel I have to do this another way, please give a hint

kylejusticemagnuson commented 6 years ago

Make sure that you have tox installed. You can install it with pip: pip install tox then you should not see that error.

If you haven't used tox before you can read more about what it is used for here: https://tox.readthedocs.io/en/latest/

I am using tox so I can run all my tests with different Python versions (2.7 and 3.6).

Hope that helps.