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

Replace Text Label When Last Bar is "Not a signal"

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

    Replace Text Label When Last Bar is "Not a signal"

    I am trying to fix up an older indicator for NT but I am not a coder (I am learning though). It uses labels upon a signal to explain the signal. The problem is that this text does not get removed or changed untill a new signal appears which may be many bars later. This can be somewhat confusing/cluttered. How would I set the labels to replace if last bar does not match any signal?
    Last edited by Frameshifter; 08-30-2014, 04:27 PM.

    #2
    Originally posted by Frameshifter View Post
    I am trying to fix up an older indicator for NT but I am not a coder (I am learning though). It uses labels upon a signal to explain the signal. The problem is that this text does not get removed or changed untill a new signal appears which may be many bars later. This can be somewhat confusing/cluttered. How would I set the labels to replace if last bar does not match any signal?
    Hard to say without knowing what the signals are in your situation?

    Is your indicator printing the same thing for every bar until a switch? So it looks like SiSigSignSignnSignnal all over your chart?

    You'd need to add some sort of flag to say what the last signal was, and if it is the same, then ignore....

    Comment


      #3
      Hello Frameshifter,

      Thank you for your post.

      Below is a basic example of using the same tag and just using "" to create a blank DrawText() at the current bar when the Close is not above the Open:
      Code:
      			if(Close[0] <= Open[0])
      			{
      				DrawText("text", "", 0, High[0] + 1*TickSize, Color.Black);
      				// No Signal
      			}
      			if(Close[0] > Open[0])
      			{
      				DrawText("text", "Signal", 0,  High[0] + 1*TickSize, Color.Black);
      				// Signal
      			}

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      148 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Started by mattbsea, Today, 05:44 PM
      0 responses
      5 views
      0 likes
      Last Post mattbsea  
      Started by RideMe, 04-07-2024, 04:54 PM
      6 responses
      33 views
      0 likes
      Last Post RideMe
      by RideMe
       
      Started by tkaboris, Today, 05:13 PM
      0 responses
      5 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,282 views
      0 likes
      Last Post Leafcutter  
      Working...
      X