Topic: How to?

Hi - I'm wanting to develop a simple stategy that enters a trade at a specific time of day using the hourly chart.
It looks at the close of the candle 5 hours earlier and compares it with the opening of the candle 29 hours earlier. If the close is higher, go long - if the close is lower, go short.
Is it possible to do this with the Strategey Builder?

Thanks for your help.

Re: How to?

It won't help publishing the same question twice.

Re: How to?

Sorry  smile

Re: How to?

You can specify the entry time by using Entry Hour indicator.

For Close5 > Close29 you can use Oscillator of Momentum.
Mom5 = Close - Close5;
Mom29 = Close - Close29;

Close - Mom5 > Close - Mom29;
Mom5 < Mom29;
Oscillator of Momentum (5, 29) is lower tha zero.