protected override void Initialize()
{
CalculateOnBarClose = true;
Overlay = true;
}
protected override void OnBarUpdate()
{
if (CurrentBar < 10)
return;
DrawRectangle("tag1"+CurrentBar.ToString(), true, 10, Low[10], 0,High[0], Color.Cyan,Color.Cyan,1);
}

Comment