Login Page - Create Account

Support Board


Date/Time: Fri, 03 May 2024 05:45:36 +0000



Post From: Colour Bar alert question

[2018-01-23 20:37:45]
Sawtooth - Posts: 3992
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.