Support Board
Date/Time: Fri, 07 Feb 2025 11:15:54 +0000
Post From: Alert Condition when near an SG level
[2020-05-27 22:12:49] |
Sawtooth - Posts: 4173 |
If you want an alert when the Close is outside the +5/-5 channel: =OR(C >= ID19.SG1 + (5 * TICKSIZE), C <= ID19.SG1 - (5 *TICKSIZE)) If you want an alert when the close is inside the +5/-5 channel: =AND(C >= ID19.SG1 - (5 * TICKSIZE), C <= ID19.SG1 + (5 *TICKSIZE)) Date Time Of Last Edit: 2020-05-27 22:13:23
|