Support Board
Date/Time: Sat, 05 Jul 2025 07:14:28 +0000
Post From: How to Use Slope for Trade Signal
[2020-11-21 13:24:56] |
Sawtooth - Posts: 4232 |
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 - |