A reader of the “UATSTB” asked for an example of how to pyramid in the Python System BackTester (PSB). I had original bug where you couldn’t peel off all of the positions at once. If you tried then the PSB would crash. I have now fixed that problem and here are the necessary lines to add on another position after the initial positions is put on. I am using a simple moving average crossover to initiate the first position and then if the longer term moving average is positive for 4 days in a row I add on another position. That’s it. A max of two position only. The system either gets reversed to the other side, stopped out or takes profits. Attached in this post is the module that fixes the pyramiding problem and the code for this system in its entirety. I will also put the fix in the version 2.0 download.
I only put in the summary of code that will create the initial position and then add 1 more. Notice the highlighted code from line 3 to 7. Here I am using a simple loop to determine if the the 39-day moving average is increasing/decreasing consecutively over the past four days. If the upCnt == 4 then I add a long position. Notice how I test in the Long Pyramid Logic the values of mp and upCnt. I only go long another position if I am already long 1 and upCnt == 4.
Here is a print out of some of the trades:
While I was posting the trades I found something that struck my funny – look at line 5 (highlighted). The short pyramid trade occurs at a higher price than the initial short – at first I thought I had made a programming error. So I thought I would double check the code and then do some debugging. Instead of invoking the debugger which is really cool and easy to use I decided to just print out the results to the console.
As you can see the longer term moving average is moving down event though price has increased. Take a look at this chart and you can see multiple occurrences of this.
Remember to copy and replace the tradeClass.py in you PSB2.0 directory – this fixes the pyramid bug. Also copy the DMAPyra.py to the same directory. If you haven’t as of yet download the PSB from this website and buy the book for a very good description.
Discover more from George Pruitt
Subscribe to get the latest posts sent to your email.