For example:
DrawText(string tag, string text, int barsAgo, double y, Color color)

protected override void OnBarUpdate()

{

         DrawText(“tag1”, “Text to draw”, 10, 1000, Color.Black);

}

The code above will get nothing to show, unless we check first.

protected override void OnBarUpdate()

        {

if(CurrentBar <= 10) return ;
DrawText(“tag1”, “Text to draw”, 10, 1000, Color.Black);
}

The code above is correct.

By admin

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.