Login Page - Create Account

Support Board


Date/Time: Fri, 20 Sep 2024 03:49:51 +0000



Post From: Back testing - Parabolic Indicator

[2013-05-11 22:25:32]
Sawtooth - Posts: 4091
To keep things easy to visualize, make the first range in the CROSSFROMBELOW and CROSSFROMABOVE functions the faster moving one.

So then, the Buy Entry would probably use the CROSSFROMBELOW and Sell Entry the CROSSFROMABOVE.

You can also use something like this:

Buy Entry:
=AND(AE4>E4,E3>AE3)
Sell Entry:
=AND(AE4<E4,E3<AE3)

Notice all I changed was the operators. This makes it easy to basically copy the formula from the buy to the sell, especially when it has many conditions.