Login Page - Create Account

Support Board


Date/Time: Sat, 23 Nov 2024 14:36:49 +0000



Post From: Back testing - Parabolic Indicator

[2013-05-11 22:25:32]
Sawtooth - Posts: 4118
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.