Mean-Reverting Trading System-Quantitative Trading in Python

Subscribe to newsletter

In a previous post, we demonstrated the mean-reverting and trending properties of SP500. In this follow-up post, we will develop a simple trading system exploiting the mean-reverting behaviour of this market index.

To generate buy and sell signals, we will use simple moving averages as noise filters. The simple moving average takes an average value of a stock over a certain period of time. It has been used for decades by technical traders and investors around the world.  There exist other types of moving averages such as exponential moving averages, but we will use the simple ones in this post.

Since we know that the SP500 is mean-reverting in a short term, we will use short-term moving averages. The trading rules are as follows,

Subscribe to newsletter https://harbourfrontquant.beehiiv.com/subscribe Newsletter Covering Trading Strategies, Risk Management, Financial Derivatives, Career Perspectives, and More

If 3-day simple moving average < 20-day simple moving average, buy $10000 worth of stock

Exit if 3-day simple moving average >= 20-day simple moving average

We downloaded SPY data from Yahoo Finance and implemented the above trading rules in a Python program. The picture below shows the equity line of the strategy. We note that using the 3-  and 20-day simple moving averages the strategy is overall profitable.

Quantitative Trading in Python

Next, we proceed to test the robustness of this system. To do so, we vary the length of the second moving averages (20 days in the previous example).  The graph below shows the total PnL as a function of the length of the second moving average. We observe that the overall profit remains positive when we change the length of the moving average. This would indicate that the strategy performance is stable in this parameter regime.

Quantitative trading in python

In summary, we developed a simple trading strategy exploiting the mean-reverting behavior of SP500. In the next installment, we will design a trend-following system on this market index.

To download the accompanying Excel workbook or Python program for this post:
1. Subscribe to the newsletter. If you're already a subscriber, go to the next step
2. Once subscribed, refer a friend
After completing these steps, you’ll gain access to the file for this post, along with files for a dozen other posts.

Further questions

What's your question? Ask it in the discussion forum

Have an answer to the questions below? Post it here or in the forum

LATEST NEWSUK Mid-Caps Hit Lowest Since April; European Stocks Erase Drop
UK Mid-Caps Hit Lowest Since April; European Stocks Erase Drop

The UK’s domestically-focused index fell to the lowest since April on worries about fiscal deficit concerns and potentially higher inflation. The pan-European benchmark erased declines as investors also monitored the outlook for US trade policy.

Stay up-to-date with the latest news - click here
LATEST NEWSMotability Operations Group issues Supplement to Note Programme
Motability Operations Group issues Supplement to Note Programme
Stay up-to-date with the latest news - click here
LATEST NEWSHong Kong sees no need to change US dollar-pegged currency system
Hong Kong sees no need to change US dollar-pegged currency system
Stay up-to-date with the latest news - click here
LATEST NEWSUK government seeks to quell turmoil in bond markets as borrowing costs soar
UK government seeks to quell turmoil in bond markets as borrowing costs soar

Treasury vows to stick to its fiscal rules and says gilt markets functioning ‘in an orderly way’

Stay up-to-date with the latest news - click here
LATEST NEWSCD, Checking, and Savings Rates Today: Supercharge Your Savings
CD, Checking, and Savings Rates Today: Supercharge Your Savings

Open a new bank account today and earn a top interest rate. Our experts have researched the best rates on checking, savings, and CD accounts to help you maximize your earnings.

Stay up-to-date with the latest news - click here

2 Comments

Leave a Reply