Tutorial 204 | Looking for conditions to occur within specified numbers of bars of each other

28 days ago

A Gold Pass asked for a tutorial about how to write a program that looked for three conditions to occur, in order. The first condition should occur, then the second condition should occur within a specified number of bars of the first. Finally a third condition would occur within a certain number of bars of the second.

The occurances being looked for in this show me study are a moving average cross over, a doji and and Bullish Harami. There was no particular logic in picking these specific conditions merely just a way of demonstrating this technique.

In this example the program looks for the moving average cross over. When it found it then looks for a Doji for the next 5 bars. If the Doji is found the program then looks for a Bullish Harami with the next 24 bars. The show me plots every time one of the conditions is found, a green dot for the average cross-over, a blue dot for a Doji and a red dot for a Bullish Harami.

In the strategy version a market order is made when the three conditions have occurred.

The way the program works is by using counters that continually increment. When one of the conditions occurs, the counter for that condition is reset to zero.

Note that the initial values for the counters are set to a level where a condition is erroneously recorded.

It is useful to create a show me study prior to a strategy to ensure that the program is working as anticipated.

See https://markplex.com/free-tutorials/tutorial-204-looking-for-conditions-to-occur-within-specified-numbers-of-bars-for-each-other/

Loading comments...