In NT7 I make regions this way:
IRegion Up_Zone;
void override OnStartUp()
{
Up_Zone = DrawRegion("Up_Zone", 0, 0, LineUp1, LineUp2, Color.Empty, Color.Blue, 10 );
}
void override OnBarUpdate()
{
Up_Zone.EndBarsAgo = 0;
}
So, how can I do same in NT8 in correct way?
Thank You.

Comment