Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

DrawText Output messed up

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    DrawText Output messed up

    I have a DrawText situation. I am printing # of contracts Filled at Bid and Ask at the appropriate price level in a bar. Below the bar I am printing net (buyers/sellers).

    As soon as I fireup the indicator the data for the current bar prints fine. But when the next bar starts the screen becomes messed up.

    I am attaching two screenshots one that shows how it prints correctly and the other one shows overlapping text (the messed up one.)

    Below is the code snippet that does DrawText. Note that the Tags are unique for each bar and price level.

    Code:
    for (i=0;i<rows.Count;i++)
    {
    netVolume += rows[i].askVolume - rows[i].bidVolume;
    DrawText(CurrentBar.ToString()+rows[i].tradePrice,false,rows[i].bidVolume.ToString()+" "+rows[i].askVolume.ToString(),Time[0],rows[i].tradePrice,0,Color.White,new Font("Arial",15,FontStyle.Regular),StringAlignment.Center,Color.Transparent,Color.Black,0);
    }
    Attached Files

    #2
    I found the problem. Had to replace DateTime with barsAgo and that solved it.

    Thanks.

    Comment


      #3
      Hello,

      Glad to hear you resolved the issue.

      Let me know if I can be of further assistance.
      BrettNinjaTrader Product Management

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      607 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      353 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      560 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      561 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X