Login Page - Create Account

Support Board


Date/Time: Mon, 29 Apr 2024 08:12:32 +0000



Post From: Spreadsheet Trading in connection with Target/Stop

[2020-07-04 13:18:21]
Sawtooth - Posts: 3982
Use two Formula Columns to create persistent signals until a trend change, then find the transitions in K3/M3.

For example:
Buy Entry in O3:
=IF(BuyEntryConditions,1,IF(ParabolicDownTrend,0,O4))
Sell Entry in P3:
=IF(SellEntryConditions,1,IF(ParabolicUpTrend,0,P4))

K3:
=AND(O4=0,03=1)
M3:
=AND(P4=0,P3=1)