Backtesting and trading for stocks, options, crypto, futures and more!
To get started with Lumibot, you can check out our documentation below.
Check out the documentation for the project here: 👉 http://lumibot.lumiwealth.com/ 👈
If you want to contribute to Lumibot, you can check how to get started below. We are always looking for contributors to help us out!
Steps to contribute:
- Clone the repository to your local machine
- Create a new branch for your feature
- Run
pip install -r requirements_dev.txt
to install the developer dependencies - Install all the requriements from setup.py:
pip install -e .
- Make your changes
- Run
pytest
to make sure all the tests pass - Create a pull request to merge your branch into master
We use pytest for our testing framework. To run the tests, you can run the following command:
pytest
To show code coverage, you can run the following command:
coverage run; coverage report; coverage html
This will show you the code coverage in the terminal and also create a folder called "htmlcov" which will have a file called "index.html". You can open this file in your browser to see the code coverage in a more readable format.
If you don't want to keep typing out the command, you can add it as an alias in bash. To do this, you can run the following command:
alias cover='coverage run; coverage report; coverage html'
This will now allow you to run the command by just typing "cover" in the terminal.
cover
If you want to also add it to your .bashrc file. You can do this by running the following command:
echo "alias cover='coverage run; coverage report; coverage html'" >> ~/.bashrc
If you are on Windows, you can add an alias by running the following command:
Add to your PowerShell Profile: (profile.ps1)
function cover {
coverage run
coverage report
coverage html
}
To set up in VS Code for debugging, you can add the following to your launch.json file under "configurations". This will allow you to go into "Run and Debug" and run the tests from there, with breakpoints and everything.
NOTE: You may need to change args to the path of your tests folder.
{
"name": "Python: Pytest",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"lumibot/tests"
],
"console": "integratedTerminal",
}
Here's an example of an actual launch.json file:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Pytest",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"lumibot/tests"
],
"console": "integratedTerminal",
}
]
}
If you want to learn more about Lumibot or Algorithmic Trading then you will love out communities! You can join us on Discord.
Join us on Discord: https://discord.gg/TmMsJCKY3T
If you need extra help building your algorithm, we have courses to help you out.
For our Algorithmic Trading course: https://lumiwealth.com/algorithmic-trading-landing-page
For our Machine Learning for Trading course: https://www.lumiwealth.com/product-category/machine-learning-purchase/
For our Options Trading course: https://www.lumiwealth.com/product-category/options-trading-purchase/
This library is covered by the MIT license for open sourced software which can be found here: https://github.com/Lumiwealth/lumibot/blob/master/LICENSE