Table Of Contents
show
Last Updated on 20 May, 2023 by Samuelsson
In your day-to-day life, before you buy anything — a mobile phone, a house, or a car — you would want to check its features and history to know if it is worth your money. That also applies to trading, but here, what you check are your trading strategies. With a wide range of markets to trade, you need to backtest your strategies to be sure they work in the different markets. But how do you backtest a trading strategy? The steps involved in how to backtest a trading strategy include defining the criteria of the strategy, selecting the market and timeframe to test it on, loading up the historical data, writing the code and implementing the backtesting, and finally, evaluating the results. A backtest is a way of testing a trading strategy on historical data to assess its performance before committing real funds to it. In this post, we take a look at how to backtest a trading strategy.Backtesting course
Before you continue reading, we remind you that we have an online backtesting course that goes much deeper than this article. It consists of many lessons and the course is a summary of our knowledge and experience after more than 20 years of (successful) trading and investing solely by using quantified trading strategies based on backtesting (please also read our trading lessons from trading the markets). For a full curriculum please click on the banner:What is a backtest?
A backtest is a way of testing a trading strategy on historical data. It is a way to simulate the historical performance of a trading strategy using historical data before committing real funds to the strategy on live trading. Backtesting is based on the assumption that if the strategy performed well in a particular market previously, it has a good chance of working again, and on the flip side, if the strategy did not perform well in the past for that market, it may not work well in the future. So, let’s say you have a swing trading strategy that says that if the S&P 500 Index has a positive return in the past month, it will give a positive return over the next week. Now, you want to test that theory to know if true. While you can forward-test it by using a demo account and waiting for the positive months to come so you check how the market performs in the week that follows each of them, that would be very time consuming. A faster way to test your theory is to test it on historical price data. You go into the past to find all the times the market has a positive monthly return and then check how the market performed in the week that followed. If the performance on historical data is good, you can assume that the strategy would perform well in the current market, but if the performance is poor, you may discard the strategy or tweak and re-test it. You can, of course, backtest any time period you like, the point is to measure how your predictions on past data work on future unknown data.
Why do you backtest?
There are many reasons to backtest a strategy, and these are some of them:- To know if you have a trading edge in the market (what is a statistical trading edge?): Many traders, even experienced traders lose money, and they don’t lose money because they don’t know how the market works. But simply because their trading strategies don’t have any statistical edge in the market they are trading. No matter how you master trading discipline, control your emotions, and manage risk, you cannot make money from a market unless your strategy has an edge in that market. If you want, risk only 0.1% of your account per trade, without an edge, the account would slowly bleed out. The only way to know if your strategy has an edge in a market is by backtesting it. The likelihood of trading profitably in the market is boosted if you backtest your strategy before trading. Emotional control and risk management only help a profitable strategy to make money — they can’t do anything if the strategy has no positive expectancy.
- To improve a strategy: Another reason to backtest a strategy is to see how you can tweak it to improve its performance. This involves altering some variables or adding new variables to see how they improve performance. The process is sometimes called optimization. Too much of it can lead to curve-fitting and dimmish the strategy’s robustness.
- Check for correlation in trading: for those more advanced, you might want to backtest a portfolio of trading strategies. You see, even if you have 20 very good trading strategies, they might not work well together if they have many overlapping trades.
How to backtest a trading strategy
These are the steps to follow when doing a backtest:- Define the logic of the strategy to backtest: The first step is to define the strategy you want to backtest and clearly state the criteria for each action with specific trading rules. The logic you want to backtest should be clear. For example, if your strategy is a moving average crossover system, you clearly state the type of moving average, the period of the two moving averages, and the entry and exit criteria. The entry and exit logic could be (as an example):
- When the 20-day SMA crosses above the 100-day SMA, exit any short position and enter a long position
- When the 20-day SMA crosses below the 100-day SMA, exit any long position and enter a short position
- Select the market(s) for the backtesting: At this stage, you specify the market you want to test the strategy on, as well as the time frame. The market you backtest must be the one you want to trade the strategy. You don’t use a strategy backtested on the silver market to trade the gold market, even though both are precious metals. Note that you can backtest the strategy on different markets and on different time frames and choose the ones with the best performance, but beware of curve fitting.
- Get the data for backtesting: You will need historical data of the market you want to backtest. While some trading platforms offer some data, they may be limited. You may have to pay to get enough historical data for your backtesting. You have to divide your data into two — in-sample data for backtesting and out-of-sample data for optimization. However, be careful about the data you backtest on. Your backtest is only as good as the quality of your data! There are plenty of bad data out there. Please read our article on the importance of good data sets in trading.
- Implement your backtesting: You may have to learn a programming language like Python, but some trading platforms like TradeStation and Amibroker use languages that are easy to use.
- Evaluate your results: After the backtesting, you need to evaluate your result to know how the strategy performed. Here are some of the performance metric statistics used in trading:
- The total number of trades: This tells you how many trades were taken during the period under study. The higher the number of trades, the more reliable the result.
- Holding time: This is the length of time that the strategy has open positions in the market. The lower the holding time, the better.
- Profit factor: This is the total profit divided by the total loss for the entire trading period. It indicates the amount of profit per unit of risk. A profit factor of more than 1 indicates a profitable strategy, but the higher the better. Note that on some platforms, this is presented as “Average size of winner/loser”.
- Maximum drawdown: This is the difference between the higher amount and lowest amount the trading capital got to during the backtesting. The lower the maximum drawdown, the better the strategy.
- The final part of a backtest is to backtest out-of sample or incubate the strategy. This involves testing the data on unknown data, ie finding out how well the backtest predicts the future unknown data.
Where can you backtest a trading strategy?
You backtest a trading strategy on a trading platform. Most trading platforms have a strategy tester section where you can backtest your strategy, but not all of them are free to use.How to backtest a trading strategy for free
As a retail trader, you may want a free platform for backtesting, and there is some free software available in the market for backtesting a trading strategy. Some of the free backtesting software are Microsoft Excel (Libre Office), TradingView, NinjaTrader, Trade Brains, etc.How to backtest a trading strategy on paid platforms
But the paid platforms may offer more features. One of the most commonly used paid platforms is Amibroker. The analysis window of the Amibroker platform allows you to back-test your trading strategy on historical data. At about 450 USD for a lifetime license, the platform is pretty cheap, and it offers full customization features for backtesting and some lightning-fast optimization features. It is easy to test strategies on a portfolio level with the platform. Practically all of the backtest done on this website are done by Amibroker. We are extremely pleased and we also use it for live trading by adding just a little extra code. Considering the cheap and its features, we believe Amibroker is a good option for most retail traders. Based on our experiences, we have created an online Amibroker course that consists of several modules (basic, live trading, and trading strategies):How long should a trading strategy be backtested?
It depends on a lot of factors. It is easy to say backtest for a period of one year or two, but statistically, it is not a question of duration but that of sample size. That said, we recommend including several types of markets, like bear and bull markets. They behave differently. When backtesting, the key thing is that you want to have enough sample size (the number of trades) that can be representative of the population (in this case, the market). So, in terms of duration, you would need as much time as can give you enough trades to have a statistically reliable result. While a sample of 250 trades may be sufficient, the bigger the sample size is, the smaller the margin of error (in most cases), and the more reliable the result. If your trading system generates enough trades, a sample of 500 – 750 trades is good. The number of trades you get would depend on the strategy and how many trades it generates per day, week, or month. For a day trading strategy that generates a trade per day, it means you get about 250 trades per year, so backtesting over a 2-3 year duration should be able to give you enough data to make reliable assumptions, yes? Not so fast. The problem is that 2-3 years is a short period and normally only included just one business cycle. We like to backtest using about 20 years so we are sure we have included bear markets in our dataset.How do you backtest a trading strategy in Excel?
When backtesting a trading strategy in Excel, here are the steps to take:- Get your data into Excel: There are two basic ways to do this: First option is to manually download historical data from Yahoo Finance directly as CSV and then load it into Excel. This works, but you’ll need to re-download that historical data and then copy and paste either the entire dataset or a subset to update your strategy. The other option is to use code to go grab data automatically from Yahoo Finance. You can search on Google for some VBA codes you can use. Some third-party tools, like AnalyzerXL, can make the job simple.
- Create your indicator: Now that you have got your data into Excel, you use them to construct an indicator or indicators for your strategy. You can use different columns to create different indicators or different aspects of an indicator, with each one taking part in the calculation. You can use other add-ons or third-party tools for more functionality.
- Formulate your trading rules: After creating your indicator, you need to formulate your trading rules. You create the calculation in a new column you name the “Signal” column. Your trading rule can be as simple as going long if the calculation is above a certain level and short if below it. But you could also have more complex rules with criteria for when to vary the position size or when to stay out of the market.
- Get the equity curve: You can get the equity curve with the Excel function, but if you need other trading stats like CAGR and the Sharpe ratio to compare the strategy with other strategies, you will have to do a bit of work or use a third-party tool like AnalyzerXL.
Do professional traders backtest?
Yes, professional traders always backtest their strategies before deploying them. They know how important backtesting is to the profitability of a trading strategy and cannot afford to make the mistake of trading a strategy that is not backtested. Some even go ahead to forward-test their strategies — if they are intraday trading strategies that can generate enough trades within a short period — before committing real money to them. Even professional traders who use discretionary trading methods still backtest their strategies. They do so manually by either going back in time to check the occasions where their trade setups occurred and how the market reacted. All serious traders keep a trading journal. Alternatively, they can use strategy tester software that prints historical data as though they are in real-time and then trade their setups as they occur.Can you backtest for free?
Yes, there are some trading platforms that allow you to backtest your strategy for free, but you may have to look for historical data from market data vendors to get enough data. Some of the free backtesting platforms include TradingView, NinjaTrader, and so on.Backtesting examples
Let’s say you have a swing trading strategy that says that if the S&P 500 Index has a positive return in the past month, it will give a positive return over the next week. You can backtest it easily to find out if it makes money. In this case, your market is the S&P 500 Index — you can test it on e-mini S&P 500 futures or the SPY ETF (SPY ETF trading). Your strategy rules are:- Go long on the next day’s open if the monthly bar closes positively
- Exit at the close of the trading week
Backtesting software
This refers to a platform you need to backtest a strategy. It can be a stand-alone platform or a trading platform. Most trading platforms have a strategy tester or analysis window where you can backtest your strategy, but not all of them are free to use. Some of the free backtesting software are Microsoft Excel, TradingView, NinjaTrader, Trade Station, Trade Brains, etc.How to backtest a strategy in Python
Python is a free open-source and cross-platform language with a rich library for almost every imaginable task, including automated trading. Thus, it is an excellent choice for backtesting a trading strategy. If you want to backtest a strategy with Python, here are the steps to follow.- Import the necessary libraries for backtesting
- Download the needed market data
- Calculate daily returns
- Create strategy-based data columns
- Create strategy indicators
- Create signals and positions
- Implement the backtesting
- Analyze results
How many trades do you need to backtest?
In most cases, a sample of 200-250 trades may be sufficient to make a reliable assumption about a market, but the bigger the sample size is, the smaller the margin of error, and of course, the more reliable the result.How do you backtest trading strategies without coding?
To backtest without coding, you have to use a code-free trading software. Such a platform allows you to create codes with a simple drag-and-drop interface. Examples of code-free platforms include TradeStation, Amibroker, MetaTrader 5, TradingView, QuantShare, and Forex Tester.How to backtest a trading strategy – an example
Let’s end the article and make a specific backtest with trading rules and settings. The strategy is called the Turnaround Tuesday strategy and is one of the most well-known strategies there is, yet it’s still working pretty well. We make the following trading rules:- Today is Monday.
- The close must be at least 1% lower than Friday’s close.
- If one and two are true, then enter at the close.
- Exit at the close on Tuesday.