Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Replace Text Label When Last Bar is "Not a signal"
Collapse
X
-
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.Tags: None
-
Hard to say without knowing what the signals are in your situation?Originally posted by Frameshifter View PostI 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?
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....
-
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 CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
50 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
136 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
195 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
102 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
142 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|

Comment