This defeats its purpose, because I want to use it to visually check the whole chart for every occurence, to see if I am happy with the three conditions as entry criteria.
How can I make it keep the old diamonds?
protected override void OnBarUpdate()
{
[lots of stuff]
if (bLongCond1 == true && bLongCond2 == true && bLongCond3 == true)
DrawDiamondLong();
}
protected void DrawDiamondLong()
{
Overlay = true;
DrawDiamond("", true, -1, Low[0] + 0.0004, Color.Black);
}

Comment