Support Board
Date/Time: Sun, 06 Jul 2025 02:31:34 +0000
Post From: Colour Bar alert question
[2018-01-23 20:37:45] |
Sawtooth - Posts: 4235 |
The Color Bar study does not recalculate for a previous bar's alerts. You could force a recalc with Kiwi's Recalc custom study, found in kiwi15.dll, here: request for a very simple ACSIL study Or you could use this: =AND( H<H[-2], L>L[-2], H[-1]<H[-2], L[-1]>L[-2] ) and get the alert in the real-time bar where it occurs. |