so adding this custom indicator is changing the appearance of the chart but way different from the desired result!?!?!?
protected override void OnBarUpdate()
{
if(1 == 1)
{
Diamond myDiamond = Draw.Diamond(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Green);
}
}

Comment