I am using range charts and I want to identify reversal bars.
I tried this, and although it seems very straightforward, it doesn't work:
bIsReversalBarDown = false;
if (Open[0] > Close[1] && Low[0] == Close[0])
{
bIsReversalBarDown = true;
BackColor = Color.Green;
}

Comment