A Python-based development platform for automated trading systems - from backtesting to optimisation to livetrading.
AutoTrader is no longer maintained
This project is no longer actively maintained. I've decided to archive it because I no longer have the time to support or update it.
AutoTrader
AutoTrader is Python-based platform intended to help in the development, optimisation and deployment of automated trading systems. A basic level of experience with Python is recommended for using AutoTrader, but the docs aim to make using it as easy as possible with detailed tutorials and documentation.
Latest News
- CryptoBots has been released along with version
1.0.0, offering ready-to-trade crypto strategies from the command line - Version 0.7 has been released, adding integrations with CCXT crypto exchanges. Many more powerful upgrades too.
- AutoTrader has been featured in GitClone's recent article, Top Crypto Trader Open-Source Projects on Github.
Features
- A feature-rich trading simulator, supporting backtesting and
- Integrated data feeds, making OHLC data retrieval as easy as possible.
- Automated interactive visualisation using Bokeh
- Library of custom indicators.
- Live trading supported for multiple venues.
- Detailed documenation and tutorials
- Repository of example strategies
Supported Brokers and Exchanges
| Broker | Asset classes | Integration status | | -------- | ------------- | ------------------ | | Oanda | Forex CFDs | Complete | | Interactive Brokers | Many | In progress | | CCXT | Cryptocurrencies | In progress |
Installation
AutoTrader can be installed using pip:pip install autotrader
Updating
AutoTrader can be updated by appending the--upgrade flag to the install command:
pip install autotrader --upgrade
Documentation
AutoTrader is very well documented in-code and on Read the Docs. There is also a detailed walthrough, covering everything from strategy concept to livetrading.Example Strategies
Example strategies can be found in the demo repository.Backtest Demo
The chart below is produced by a backtest of the MACD trend strategy documented in the tutorials (and available in the demo repository). Entry signals are defined by MACD crossovers, with exit targets defined by a 1.5 risk-to-reward ratio. Stop-losses are automatically placed using the custom swing detection indicator, and position sizes are dynamically calculated based on risk percentages defined in the strategy configuration.Running this strategy with AutoTrader in backtest mode will produce the following interactive chart.
Note that stop loss and take profit levels are shown for each trade taken. This allows you to see how effective your exit strategy is - are you being stopped out too early by placing your stop losses too tight? Are you missing out on otherwise profitable trades becuase your take profits are too far away? AutoTrader helps you visualise your strategy and answer these questions.
Contributing
To contribute toautotrader, please read the instructions below,
and stick to the styling of the code.
Setting up for Development
- Create a new Python virtual environment to isolate the package. You
venv or
anaconda.
- Install the code in editable mode using the command below (run from
autotrader root directory). Also install all dependencies
using the [all] command, which includes the developer dependencies.
pip install -e .[all]
- Install the pre-commit hooks.
pre-commit install
- Start developing! After following the steps above, you are ready
Developing AutoTrader
- Fork the repository and clone to your local machine for development.
- Run black on any
- Document as you go: use
- Write unit tests for the code you add, and include them in
tests/.
- Commit code regularly to avoid large commits with many changes.
- Write meaningful commit messages, following the
cz c command to make a
commit.
- Open a Pull Request
Building the Docs
To build the documentation, run the commands below.
cd docs/
make html
xdg-open build/html/index.html
If you are actively developing the docs, consider using sphinx-autobuild. This will continuosly update the docs for you to see any changes live, rather than re-building repeatadly. From the docs/ directory, run the following command:
sphinx-autobuild source/ build/html --open-browser
