Skip to content

Start developing and backtesting your own automated trading strategies

Notifications You must be signed in to change notification settings

tradingstrategy-ai/getting-started

Repository files navigation

Getting started with algorithmic trading with TradingStrategy.ai

Support and social media

Got any questions? Pop into our Discord.

Prerequisites

In order to get started you need

  • Github user account
  • Basic Python and data science knowledge
    • Python scripting
    • Pandas
    • Jupyter Notebook
  • Basic algorithmic trading knowledge
    • Understanding price chart and price action
    • Technical indicators

If you use Github Codespaces, no additional software is needed, you can do the first tests in your web browser.

To get a quick primer on the Trading Strategy framework, check the Trading Strategy workshop video recording.

Development environment options

You can either run and edit these examples

Example strategy backtests

You can find these example strategy backtests.

Individual backtests:

Example grid searches

Grid searches run several backtests over multiple strategy parameter combinations. This allows you to "brute force search" better strategies and explore the behavior of a strategy with different parameters.

  • Multipair 1h: grid search
    • Same as Multipair 1h: An ATR-based multipair breakout strategy using Binance CEX data above
    • We have converted Parameters to individual parameter values to searchable option lists
    • Grid search over parameters and see if it improves the performance

How to run on Github Codespaces

In this tutorial, we open a single backtest in Github Codespaces and run it. You can do all in your web browser using your Github account, no software is needed.

Press Create codespace master on Github repository page (master refers to the primary development branch of Git version control system).

This will give you a page showing your codespace is being launched.

After a while your Github Codespaces cloud environment is set up. The first launch is going to take a minute or two.

In the file explorer on the left, open a notebook: notebooks/single-backtest/matic-breakout.ipynb.

After opening the notebook click Clear all Outputs and then Run all button Jupyter toolbar.

When you are asked to Select kernel. Choose Python Environments.. and then /usr/local/bin/python.

img.png

You should see now notebook running, indicated by the progress indicator and run time count down in each notebook cell.

img.png

After the notebook is running successfully, you should be able to press Go to on the toolbar and see the backtesting progress bar going on. You will see a separate progress bar for 1) downloading data (done only once) 2) calculating technical indicators 3) running the backtest.

img.png

Note: If you see a text "Error rendering output item using 'jupyter-ipywidget-renderer. this is undefined. it means Visual Studio Code/Github Codespaces has encountered an internal bug. In this case press Interrupt on a toolbar, close the notebook, open it again and press Run all again. It happens only on the first run.

Shortly after this backtests results are available.

You can find them by scrolling down to the different sections

  • Equity curve
  • Performance metrics
  • otehrs

img.png

And now you are done with our first backtest! Continue below to learn more how you can get started with your own strategies.

How to run: local Visual Studio Code

This is an alternative for Github Codespaces that runs on your local computer (fast).

  • Check out this Github repository to your local computer
  • Open the checked out folder in your Visual Studio Code
  • Visual Studio code should prompt you "Do you wish to run this in Dev Container"
  • Choose yes
  • Follow the same steps as in How to run on Github Codespaces above

Note: If you run on a local sometimes the Jupyter Notebook toolbar does not appear with Run all etc. buttons. Often Visual Studio Code fails to automatically install its extensions on the first run: in this case you need to restart your Visual Studio Code and reopen the notebook.

How to run: Your own Python environment

For seniors, with full source code checkout:

make trade-executor-clone  # Git clone with submodules
poetry shell
poetry install

Strategy backtest notebook structure

Each strategy backtest notebook will consist of following phases.

  • Set up: Create Trading Strategy client that will download and cache any data
  • Parameters: Define parameters for your strategy in Parameters Python class
  • Trading pairs and market data: Define trading pairs your strategy will use and method to construct a trading universe using create_trading_universe() Python function. This function will take your trading pairs and additional information (candle time frame, stop loss, needed lending rates) and construct Python dataset suitable for backtesting. See documentation.
  • Indicators: In this phase, you have create_indicators function. You define indicator names, parameters and functions for your strategy. Indicators are defined as a separate step, as indicator calculation is performed only once and cached for the subsequent runs. See documentation.
  • Trading algorithm. Here you define decide_trades function that contains the trading strategy logic. It reads price data and indicator values for the current timestamp of the decision cycle. Then it outputs a list of trades. Trades are generic by PositionManager of which functions open_position and close_position are used to open individual trading positions.
  • Backtest: This section of the notebook runs the backtest. Here is a progress bar displayed about the current running backtest, and any errors you may encounter. We use function run_backtest_inline() that gives us the backtest's state Python object, which contains all the information about the backtest execution we can then analyse.
  • Output: You can have various visualisation and tables about the strategy performance. These include e.g. Equity curve, Performance metrics (max drawdown, Sharpe, etc) and Trading statistics.

This is a rough skeleton. You mix and match can easily add your own trading signals and output charts using with all tools available in Pandas and Jupyter notebook ecosystem. There aren't any limitations on what you can do.

Grid search skeleton

The grid search is the same invididual backtest with very minimal changes

  • Parameters class has single parameter values replaced with Python lists to explore all the list combinations in the grid search
  • Backtest runs perform_grid_search instead of run_backtest_inline
  • Output shows summaries backtest results and heatmaps

Grid search are computer resource constrained (number of CPU cores), so we recommend running grid searches only on local powerful computers.

Learning resources

Troubleshooting

Note to Mac users: The current Docker image is built for Intel platform. If you run Dev Container on your Mac computer with Visual Studio Code, the backtesting speed is slower than you would get otherwise.

Testing the Dev Container build:

devcontainer up --workspace-folder . 

Checking installed packages wihtin Codespaces terminal:

pip list

Running the example notebooks using command line ipython (useful for debugging)

ipython notebooks/single-backtest/bitcoin-breakout-atr.ipynb