Automatic Strategy Generation With StrategyQuant

This section of the roadmap focuses on strategy development using StrategyQuant.

StrategyQuant is a comprehensive strategy development platform that uses genetic evolution to automatically generate novel strategies. These strategies can be subsequently funneled through a series of robustness tests, ranging from Monte Carlo simulations to walk forward optimizations, helping you select a strategy that is likely to maintain its edge in real time.

These robust strategies can finally be exported to Metatrader, TradeStation, MultiCharts or JForex for live trading.

Similar to the MT4 development section, we will now use StrategyQuant to develop a trend system for the hourly GBPJPY. Taking advantage of StrategyQuant’s efficient backtest engine, we will expand the backtest period from 5 years to 16.5 years (August 2003 – Jun 2020).

We will start by automatically generating a large basket of potential strategies, which will then be subjected to increasingly stringent robustness tests. This article will cover the specifics of the strategy generation process, while the subsequent robustness testing will be discussed here.

Genetic Algorithms

Strategy generation using genetic evolution is one of StrategyQuant’s unique features. Before we dive into the details of the strategy generation process, let’s take a brief excursion into the field of genetic algorithms.

What Are Genetic Algorithms, and Why Use Them?

Inspired by Darwin’s theory of evolution, genetic algorithms mimic the biological processes of natural selection, reproduction and mutation to create increasingly profitable strategies.

Think about the various elements of your strategy, and how many possibilities exist for each of them. For example, what indicator should you use for your entry? Should you use a market or limit order to enter the market? Should you then add a time stop or a profit target?

It quickly becomes evident that there are infinite ways to build a strategy. Genetic algorithms can help by:

  1. Shrinking the search space by removing unprofitable strategy elements, significantly reducing computation time
  2. Discovering optimal combinations of strategy elements/indicators that you may never have thought of

The sections below will give a brief overview of the genetic evolution process. For a more in-depth explanation, I refer you to Denny Hermawanto’s excellent paper titled ‘Genetic Algorithm for Solving Simple Mathematical Equality Problem.’

Definitions

The terms used in genetic algorithms are analogous to those used in biology.

  1. Population: This refers to the pool of strategies you currently have. To kick-start the evolution process, an initial population will be randomly generated using the input information
  2. Generation: The entire population during each iteration of the strategies’ evolution
  3. Fitness: A measure of how well the strategy meets the desired goals. Fitness functions are metrics used to quantify the strategy’s fitness. Net profit is a simple example. 
  4. Crossover: Like human reproduction, crossovers create a new generation of strategies by combining two parents from the current generation
  5. Selection: The process of giving fitter strategies a higher likelihood of being used for crossovers
  6. Mutation: The random replacement of one of the strategy’s elements with another from the input information

Genetic Evolution Process

The specifics of each genetic algorithm will vary, but the general outline of the process is as follows:

The inputs specified (e.g. indicators used, entry/exit types) are randomly combined to form a viable strategy, creating the initial population.

Fitness is computed for each strategy in the population, and fitter strategies are assigned higher probabilities of being used for crossovers.

During each crossover, the two ‘parent’ strategies are split at a randomly determined point and the resulting building blocks are spliced together to create an ‘offspring’ strategy.

A split point was randomly chosen to be after the third building block. The child thus receives the first 3 blocks from mom, while the remaining 2 come from dad. This child subsequently replaces one of the parent strategies.

The final operation in each evolution cycle is mutation, where one of the strategy’s building blocks is randomly replaced by another from the pool of inputs. The child created above is used to illustrate this:

After crossover and mutation are complete, the next generation of strategies is created. The processes of selection, crossover and mutation are repeated until the evolution is stopped, thus progressively creating fitter strategies.

Note that genetic algorithms operate based on probabilities. Like human evolution, there is no guarantee that the next generation of strategies will be fitter than the current one. However, over the course of evolution spanning multiple generations, strategy fitness is very likely to improve.

Building Strategies in StrategyQuant

Armed with an understanding of genetic algorithms, it’s time to dissect StrategyQuant’s generation process.

As illustrated below, we begin by configuring our strategy elements and genetic settings. These inputs are fed into the genetic algorithm, which progressively generates profitable strategies using the evolutionary processes described above.

Finally, strategies which pass our performance filters are saved into the databank. Let’s briefly discuss the build configuration for our hourly GBPJPY trend system.

Building Blocks

Let’s begin by selecting the entry and exit types for the strategy.

As we discovered in the Market Research section, GBPJPY has high volatility and trends well, although frequent whipsaws and false breakouts should be expected. Let’s try to eliminate some of the false entries by using stop entry orders, where the entry price is set at a certain distance above (below) the current market price for long (short) trades. Some market confirmation is thus required before we enter the market.

There are numerous options for the exit types. In general, I consider stop losses to be mandatory for risk control. For simplicity, let’s select only the stop loss and bar-based time stop. The CCI trend strategy developed in MT4 also contains these two exits, so this selection should provide a decent starting point.

You may wish to experiment with different exit types, depending on the type of strategy you wish to build, and the market you will trade it on. Profit targets tend to work better for short-term countertrend strategies, while trailing stops work well for long-term trend following strategies. 

Now let’s select our pool of technical indicators. 

StrategyQuant comes loaded with a whole bunch of indicators. You can even import your own custom indicators. I prefer using ‘traditional’ indicators such as Bollinger bands and moving averages. Don’t let their simplicity fool you; they have stood the test of time because they work.

Parameter Ranges

Let’s now specify the parameter ranges for our building blocks above.

Both pip and ATR-based stop losses will be tested, and the indicator lookback periods will be within the 10-100 range. Since the genetic algorithm will be running countless iterations with different combinations of building blocks, your selected ranges should be large enough to accommodate a variety of market conditions and strategy types.

The entry rule will use no more than 2 conditions; adding more may cause overfitting and negatively affect the strategy’s robustness.

Money Management

Money management amplifies your profits when your strategy performs well, and preserves your capital during periods of drawdown. It is thus advisable to have some sort of money management or position sizing scheme in place during actual trading.

During strategy development, however, I prefer to use a fixed lot size for the backtest. Consider the two equity curves below:

Both are identical strategies with $3000 initial capital. The first strategy traded a fixed 0.1 lots throughout, producing a $6100 profit. The second strategy traded 0.1 lots for every $3000 of account balance, meaning position sizes increased as the account grew, eventually producing $18600 profit.

This tripling of profits was purely due to position sizing. From the equity curves, it is easy to be tricked into thinking that the second strategy has a superior trading edge. By removing position sizing during development, we can get a clearer picture of the strategy’s edge over the course of the backtest.

For convenience, I will use a fixed size of 0.01 lots throughout development. The very popular fixed fractional method is also available if you wish to develop strategies with position sizing implemented.

Note that you can optimize your position sizing method to suit a particular backtest, although I believe this easily leads to overfit strategies. 

Backtest Data

The data settings are similar to what you get in MT4, except that you can separately factor in slippage and commissions. The ‘Selected timeframe only’ test precision is similar to MT4’s ‘Open prices only’ model.

One of my favourite features is the ability to run out-of-sample tests during strategy generation itself. This means you can test your newly-generated strategies on fresh data that was not previously used for development. This is an effective robustness test that estimates how well your strategy will perform in live trading.

To take advantage of this inbuilt robustness test, you will need to break down the data portion into training (in-sample) and out-of-sample portions. Only the training data (white portion) will be used for strategy generation. Your training data should be long enough to cover different market conditions, while leaving sufficient out-of-sample data for robustness testing.

For simplicity, let’s just use a 50-50 data split; 8 years of data should be sufficient for each portion. Later on, we will set our performance filters to select only strategies with good out-of-sample performance.

Genetic Settings

This section is only relevant if you use genetic evolution to generate strategies. The alternative is to use StrategyQuant’s random strategy generator, where the building blocks specified above are randomly combined to create strategies. The evolutionary processes (selection, crossover, mutation) are not used.

There is some argument that random generation lowers the amount of curve fitting and thus produces more robust strategies. I am unsure about this, but I know it takes far longer to generate profitable strategies with random generation. All the strategies I am currently trading are a result of genetic evolution.

If you wish to take the genetic route, here is where we input the evolution settings for the genetic algorithm. These algorithms are the subject of ongoing scientific research, and choosing the optimal parameters is a non-trivial task. I find that the default settings in StrategyQuant work reasonably well.

The recommended population size is 10-100. A population that is too small provides little diversity and leaves little room for improvement, while an excessively large one causes long computation times.

With islands, StrategyQuant allows several populations of strategies to be simultaneously evolved. The product of each island’s population size and the number of islands gives you the total number of strategies managed by the algorithm.

Strategies can migrate from island to island, helping to ‘rejuvenate’ some strategies whose fitness may have reached a plateau. This should only happen occasionally though; otherwise we would lose the diversity of the independent islands.

Crossover probability refers to the probability that each strategy will be used for crossover. A probability of 1 means the subsequent generation of strategies will be created entirely from crossovers of the current strategies. In the literature, values of 0.5-0.9 are commonly used.

Mutation probability is the likelihood that a randomly selected element from each strategy will be swapped with another element from the pool of building blocks. A low mutation probability is beneficial because it adds diversity. If it is set too high, the evolution will become too random, and population fitness will not increase.

Now we need to select our fitness function.

The return/drawdown ratio is a simple risk-adjusted performance metric that should suffice. You also have the option of creating a custom weighted fitness function consisting of numerous metrics.

The ‘main data backtest’ option means that only our strategies’ performance on GBPJPY will be used to compute fitness. An alternative is to compute the fitness over an entire portfolio of markets. This is a great way to build robust strategies, but computation time will rise significantly.

Finally, let’s talk about evolution management. These settings let you determine when to stop or restart the evolution. 

I usually let the entire evolution process repeat itself after the maximum number of generations has been reached. You can decide to end the evolution after a set amount of time, or after a target number of strategies has been generated.

Genetic algorithms operate based on probabilities, and there is a small chance that the strategies get weaker as they evolve. If this happens, you have the option of restarting the evolution if population fitness stagnates over a set number of generations.

Performance Filters

Since the genetic algorithm will be generating hundreds of strategies per minute, performance filters are needed to separate the wheat from the chaff. It is inevitable that certain combinations of building blocks will not produce viable strategies.

For example, some entry conditions may result in zero trades, or the entry and exit price levels may be too close together. To counter this, StrategyQuant comes with a slew of automatic filters shown below.

Custom filters allow you to set your own performance benchmarks for the build. To screen for consistency over the backtest period, you can specify performance filters for every data segment. I try not to be too strict at this point; the subsequent robustness tests tend to be extremely demanding.

Since the 16-year data period was equally split into the training and out-of-sample segments, let’s specify the filters for each segment. For simplicity, I will only use the following:

  1. Numer of trades: At least 300 over the entire backtest period, which translates to about 1.5 trades per month
  2. Profit factor: A 1.30 profit factor over each 8-year period is about the minimum peformance I can accept
  3. Expectancy: I use this to check whether transaction costs can be covered. With a 0.01 lot size, the $0.50 specified translates to about 5 pips
  4. Longest trade: With the array of economic reports that are periodicially released, I do not wish to hold my trades for longer than 30 days

That’s it for settings!

Strategy Generation Results

Using the above settings, a 6-hour build was done on the hourly GBPJPY. Note that genetic algorithms are computationally intensive programs. The build statistics are shown below:

The genetic algorithm iterated through half a million strategies, of which 98% failed our performance filters. Lack of profitability is usually the most common reason for failure. Our databank reached its limit of 9999 strategies, and these strategies will be sent for robustness testing next.

Wrapping Up

Genetic algorithms are powerful tools that allow you to automatically generate novel strateiges. Here we set up StrategyQuant’s genetic algorithm to generate a trend following strategy for the hourly GBPJPY.

After running the algorithm for 6 hours and feeding the resulting strategies through our performance filters, a healthy databank of strategies was produced. These strategies will now need to pass our robustness tests before they can be considered for live trading.

Strategy Development Roadmap

Supercharge your strategy development with StrategyQuant

Access 14-day FREE trial here!

Get up to USD 300 discount!

Strategies need improvement?

Use QuantAnalyzer’s powerful analysis tools

Try the FREE version here!

Get 20% Discount here!

FXVM Forex VPS
Follow Us

Recent Posts

Laguerre RSI Trend Following Strategy

The Laguerre RSI attempts to improve the responsiveness of the regular RSI, whilst keeping whipsaw trades to a minimum. Let’s see how well it detects short-term pullbacks for a trend following strategy!

read more

What Is the Kaufman Adaptive Moving Average?

The Kaufman Adaptive Moving Average is a unique indicator that automatically adapts to the market’s noise. Here I explain its inner workings and show you how to build a trend following strategy around it.

read more

What is Fixed Ratio Money Management?

Have you heard of fixed ratio money management? How does it compare to the popular fixed fractional approach? Here I’ll explain how fixed ratio works, and see how it stacks up against fixed fractional money management.

read more

Build a Diversified Portfolio With QuantAnalyzer

The ability to efficiently trade a diversified portfolio of strategies is one of the biggest advantages of algorithmic trading. Here we will use QuantAnalyzer’s Portfolio Master to build a portfolio consisting of high performing, uncorrelated strategies.

read more

What Is the QQE Indicator?

The QQE is a mysterious indicator that sometimes pops up in trading forums. Does it deserve a place alongside the more traditional momentum indicators like the RSI and CCI? Let’s add it to a trend following strategy to find out!

read more

Hey there, Wayne here! I’m on a mission to develop robust algorithmic trading strategies for the forex markets. Trading Tact is where I share my trading methods and insights.

Follow Us
Have a Question?

Comments

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

Supercharge your strategy development with StrategyQuant

Access 14-day FREE trial here!

Get up to USD 300 discount!

Strategies need improvement?

Use QuantAnalyzer’s powerful analysis tools

Try the FREE version here!

Get 20% Discount here!

FXVM Forex VPS

Recent Posts

Should You Use the Kelly Criterion for Forex Trading?

Should You Use the Kelly Criterion for Forex Trading?

The Kelly criterion is a famous mathematical formula that attempts to maximize your long-term capital growth. In this post, I’ll apply it to a EURUSD breakout strategy and explain some of its potential shortcomings when applied to forex trading.

read more

Hey there, Wayne here! I’m on a mission to develop robust algorithmic trading strategies for the forex markets. Trading Tact is where I share my trading methods and insights.

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Make your money work for you!

Make your money work for you!

 

Get trading ideas and strategy development tips delivered to your inbox!

Thanks for subscribing!

Pin It on Pinterest

Share This