Topic: Close < Close [4]

Hi everybody

it's possible with FSB to create this opening logic condition

If Close < Close [4] then Sell Stop at Market;

Thanks

Re: Close < Close [4]

It is possible and it is very easy.

If you want to compare the Close prices, it means that you have to wait for the Close of the current bar. But when the bar closes, the new opens, so you are actually at the next bar Open and the Market price is that Open. In that case you are sending an Market order instead of Stop pending order.

We can use the Momentum indicator for an opening logic condition because
Momentum(p) = Close(t) - Close(t-p).

The strategy looks like:

http://s2.postimg.org/g8eg46dx1/screenshot_1335.jpg

Momentum > 0 means that Close > Close(t-4)