Support Board
Date/Time: Sat, 08 Feb 2025 11:03:55 +0000
Post From: Spreadsheet Trading in connection with Target/Stop
[2020-07-04 13:18:21] |
Sawtooth - Posts: 4173 |
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) |