Support Board
Date/Time: Tue, 01 Jul 2025 03:33:51 +0000
Post From: Alert Condition when near an SG level
[2020-05-27 22:12:49] |
Sawtooth - Posts: 4231 |
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
|