Login Page - Create Account

Support Board


Date/Time: Sat, 08 Aug 2026 14:37:14 +0000



Post From: Formula Help

[2021-06-30 12:04:03]
Sawtooth - Posts: 4343
All of the formulas require that all of the lines change slope in the same bar.

If some have already changed slope, and then one has changed slope, the formulas would look like this
(after also removing the unnecessary ANDs and parentheses) :

Down:
=AND( ID3.SG1[0] < ID3.SG1[-1] , ID5.SG1[0] < ID5.SG1[-1] , ID2.SG1[0] < ID2.SG1[-1] , (ID2.SG1[-1] >= ID2.SG1[-2])
Up:
=AND( ID3.SG1[0] > ID3.SG1[-1] , ID5.SG1[0] > ID5.SG1[-1] , ID2.SG1[0] > ID2.SG1[-1] , (ID2.SG1[-1] <= ID2.SG1[-2])

Down:
=AND( ID5.SG1[0] < ID5.SG1[-1] , ID2.SG1[0] < ID2.SG1[-1] , ID2.SG1[-1] >= ID2.SG1[-2])
Up:
=AND( ID5.SG1[0] > ID5.SG1[-1] , ID2.SG1[0] > ID2.SG1[-1] , ID2.SG1[-1] >= ID2.SG1[-2])