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 CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      58 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      35 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      103 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      184 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      171 views
      0 likes
      Last Post CarlTrading  
      Working...
      X