protected override void OnBarUpdate()
{
// Use this method for calculating your indicator values. Assign a value to each
// plot below by replacing 'Close[0]' with your own formula.
// Plot0.Set(Close[0]);
if (!Historical) DrawLine(CurrentBar.ToString(),true,0,High[0] + 2,0,Low[0]-2,Color.Chocolate,DashStyle.Dash,2);
}

Comment