Support Board
Date/Time: Thu, 13 Feb 2025 08:02:06 +0000
Post From: How to Use Slope for Trade Signal
[2020-11-21 13:24:56] |
Sawtooth - Posts: 4173 |
Try this: =AND(FRACTIME(MROUND(A3,1/86400))>TIMEVALUE("07:00:00"),SLOPE(AA3:AA4,A3:A4)<0) This will give you lots of entry arrows. To only plot the first time it occurs/recurs: =AND(FRACTIME(MROUND(A3,1/86400))>TIMEVALUE("07:00:00"),SLOPE(AA3:AA4,A3:A4)<0,SLOPE(AA4:AA5,A4:A5)>0) This finds each time the slope changes from + to - |