Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by pechtri, 06-22-2023, 02:31 AM
      9 responses
      122 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by frankthearm, 04-18-2024, 09:08 AM
      16 responses
      64 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Started by habeebft, Today, 01:18 PM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by benmarkal, Today, 12:52 PM
      2 responses
      13 views
      0 likes
      Last Post benmarkal  
      Started by f.saeidi, Today, 01:38 PM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X