-
This is an example repository for the Trading Strategy SDK to get started bringing your algorithmic trading strategy to DEXes and DeFi markets.
-
Trading Strategy SDK does
- DEX and lending protocol market data feeds
- Backtesting and strategy development
- Live trade execution
- Asset management for multiple investors using smart contract vaults
-
This repository contains multiple examples of backtesting notebooks to get started
-
The examples show how to develop and backtest your strategies on both decentralised exchanges and Binance centralised exchange data
Got any questions? Pop into our Discord.
- Trading Strategy community Discord server
- Trading Strategy website
- Blog
- Telegram channel
- Newsletter
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.
You can either run and edit these examples
- In your web browser, using Github Codespaces - see below (very easy, suitable for learning, but slow speed)
- Locally using Visual Studio Code Dev containers (easy to set up, a bit faster)
- Locally using Visual Studio Code (much faster, but more expertise required)
- Locally using PyCharm (much faster, but more expertise required)
- Locally using any Python editor you wish (super fast, tailored to your flavour, but senior Python expertise required)
Here are example notebooks for backtesting. Each of the backtest code can be taken to a live trading strategy as is. The examples vary between from old fashioned technical indicator based algorithms to portfolio construction and DeFi yield optimisation.
Individual backtests:
- BTC: moving average (MA) strategy
- Easy complexity
- One of the simplest technical indicator-based trading strategies there is
- We buy if the Bitcoin daily close price is above its simple moving average (MA), otherwise sell
- ETH: rolling maximum close strategy
- Easy complexity
- One of the simplest technical indicator-based trading strategies there is
- We buy if the Ether daily close price is above its 10 days maximum
- ETH: fast exponential moving average and slow exponential moving average example strategy
- Easy complexity
- 1h timeframe
- One of the simplest technical indicator-based trading strategies there is
- MATIC: An RSI and Bollinger bands breakout strategy for MATIC using Binance CEX data
- Easy complexity
- 1h timeframe
- BTC: An ATR-based breakout strategy for BTC using Binance CEX data
- Average complexity
- 15m timeframe
- Adds a market regime filter based on daily ADX indicator
- BTC: An ATR-based breakout strategy for WBTC on Uniswap v3 and Arbitrum
- Same backtest as above, but using Uniswap price feed instead of a centralised exchange
- Highlights some of the difference in data quality between DEX and CEX
- Multipair 15m: An ATR-based multipair breakout strategy using Binance CEX data
- Same as above
- Trades all BTC, ETH and MATIC in a single strategy
- Multipair 1h: An ATR-based multipair breakout strategy using Binance CEX data
- Same as above
- Instead of trading a 15-minute timeframe, this backtest trades 1h timeframe with a 24-hour point of interest window
- Portfolio construction
- A portfolio construction strategy example
- Trades anything on Polygon DEXes and contains examples of how to filter out for bad trading pair data
- Takes a list of ERC-20 addresses as input, and creates a trading universe based on these
- Constructs a spot market portfolio with daily rebalances
- Average complexity
- Open-ended momentum basket
- A portfolio construction strategy example
- Trades any token on Uniswap v3 on Ethereum
- The trading universe is open-ended: trades any token that has been ever listed on Uniswap v3
- High complexity
- Alternative data
- Reads custom signal data (sentiment data) from CSV file and incorporates it as part of the trading strategy
- Otherwise same as above
- Average complexity
- Liquidity risk analysis
- Same as above
- Includes liquidity risk analysis in the strategy by trading only pairs with minimum liquidity
- Expands the dataset to include all Polygon pairs and their liquidity data
- Needs a separate script to prepare the dataset for the backtests
- High complexity
- Volume-based indicators
- An example of using a volume-based indicator, in this case Money Flow Index, to open and close positions
- Uses ETH daily price from Uniswap v3 on Ethereum
- Low complexity
- Capacity limitations
- An example notebook for a strategy with limited capacity - the strategy cannot deploy all the capital it has
- The strategy demostrates how to avoid taking too large positions in low liquidity DEX pools
- The strategy attempts to trade $10M in low liquidity QuickSwap Polygon pools
- Uses
AlphaModel
andUSDTVLSizeRiskModel
to reduce the size of positions so that it is small % of the overall pool size - After the backtest the notebook examines what was the % of the deployed capital of all capital we could have deployed
- Medium complexity
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.
-
- 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
- Same as
-
Bollinger Bands BTC 1h: Gaussian Process optimiser
- This notebook users Gaussian Process (GP) instead of grid search to find the best strategy parameters
- Gaussian Process is much faster than brute forcing exhaustive grid search
- This is using
scikit-optimise
library - Setting up optimiser is somewhat more complicate than setting up a grid search
-
Multipair ATR breakout: custom optimisation target
- This notebook is using an optimiser with a custom optimisation search function
- We weight 75% on Sharpe, 25% on Maximum Drawdow
- Uniswap CSV export of top 100 pairs
- This Python script downloads 1d trading data for all DEX pairs
- From this dataset we export OHCLV CSV for top 100 most liquid pairs on Uniswap v2 and v3 on Ethereum
- This CSV can be then imported to the various trading strategy development applications like RealTest and MetaTrader
- Uniswap CSV export of top pairs, survivorship-bias free and scam filtered
- This is more advanced version of the script above
- This Python script downloads 1d trading data for all DEX pairs
- From this dataset we export OHCLV CSV for top 100 most historically liquid pairs, instead of today's liquid pairs
- We will also do a risk scoring check using TokenSniffer to avoid honeypots and scams
- Uniswap CSV export of top pairs, aggregated liquidity and volume
- This is more advanced version of the script above
- This version aggregates volume and liquidity across the same trading pairs
- E.g. if the same pair trades on Uniswap v2 and Uniswap v3 different pools with fee tiers, volume and liquidity are aggregated
- ADX regime filter research
- This is an indicator visualisation -only notebook for testing different ADX market regime filter values
- The notebook will render the regime detection (bull market, bear market, crab market) of various cryptocurrencies
- The notebook shows how indicators can use data from other indicators using indicator dependency resolution
- Medium complexity
- Regime filter Bayes and Gaussian Proces (GP) optimiser
- The same as above
- Finds optimal market regime filter parameters for a certain definition of optimal
- Uses scikit-optimize Python package to find optimal values for a regime filter
- Demostrates how to integrate
scikit-optimizer
pipeline into the notebooks - Uses Gaussian Process (GP) instead of a grid search, being much faster, demostrating the benefits of an optimizer
- Advanced complexity
- Live trade executor example repo
- Set up a Docker instance that runs a strategy for live trading
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
.
You should see now notebook running, indicated by the progress indicator and run time count down in each notebook cell.
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.
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
And now you are done with our first backtest! Continue below to learn more how you can get started with your own strategies.
Example how to run notebooks and scripts from the command line.
# Get all Python source code we need
# (A lot of code)
git clone --recursive https://github.com/tradingstrategy-ai/trade-executor.git deps/trade-executor
# Create virtual environment
poetry install
# Active Pytohn virtual environment
poetry shell
# Run script
python scripts/prefilter-uniswap-v3-ethereum.py
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 currenttimestamp
of the decision cycle. Then it outputs a list of trades. Trades are generic byPositionManager
of which functionsopen_position
andclose_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'sstate
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.
- Learn algorithmic trading
- Trading Strategy documentation
- About Github Codespaces
- About Visual Studio Dev Containers
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.
- Rebuilding Dev Containers for Github codespaces
- Dev Container CLI
- Microsoft default Dev Container image for Python
- Dev Container Github Action
- Dev Container JSON reference
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