Support Board
Date/Time: Sun, 19 Jan 2025 21:56:31 +0000
Post From: Multiple Positions Entry and Exit
[2018-05-10 16:17:39] |
Sawtooth - Posts: 4157 |
Both entries and exits will use J26 for the order quantity. (Unless J82/J83 is used). Your J26 formula does not return a quantity for entries. (A J26 of zero will default to 1). Try this: =IF( ABS(J8) = 5, 2, IF( ABS(J8) = 3, 3, 5)) Your L3 formula is triggering at 3 points and 5 points, not 10 and 20. Try this: =OR( AND( $J$8 = 5, E$3 - $J$9 > 10), AND( $J$8 = 3, E$3 - $J$9 > 20)) Set 'Allow Multiple Entries in the Same Direction' = No. Date Time Of Last Edit: 2018-05-10 17:55:01
|