Login Page - Create Account

Support Board


Date/Time: Sat, 12 Jul 2025 05:46:23 +0000



Post From: Reset Signals after Trade Invalidation

[2023-10-04 17:35:12]
Sawtooth - Posts: 4238
Try this:
P3:
=IF(BuyEntryCondition,1,IF(D3<D4,0,P4))
K3:
=AND(P4=0,P3)
Q3:
=IF(SellEntryCondition,1,IF(C3>C4,0,Q4))
M3:
=AND(Q4=0,Q3)

P3 is the Long Entry persist, Q3 is the Sell Entry persist.
Each is now independent.