Login Page - Create Account

Support Board


Date/Time: Fri, 27 Jun 2025 15:52:32 +0000



Post From: How do a Crossover Trading system?

[2021-10-04 11:55:48]
Sawtooth - Posts: 4231
Try this, where the Moving Average Crossover study is ID1:

Buy entry:
=AND(ID1.SG1>ID1.SG2,CROSSFROMBELOW(C,ID1.SG1))
Buy exit:
=C<ID1.SG1

Sell entry:
=AND(ID1.SG1<ID1.SG2,CROSSFROMABOVE(C,ID1.SG1)
Sell exit:
=C>ID1.SG1