I have two plots on my indicator. Occasionally both plots print a dot at the same bar. Is there any way to get the dot from one indicator to print on top of the other dot so that both dots can be seen at the bar? Thank you.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plot Overprint
Collapse
X
-
Hello Zeos6,
Thank you for your note.
There would be no way to print one on top of the other so both are visible.
What you could do is add an offset in the case they are the same. For example if both plot values are going to be equal, you could add 5% to one of the plot values, so that it will be different enough so that its visual.
For example,
Then set your plots.Code:if(plot2Value == Plot1Value) { plot2Value = plot2Value * 1.05; }
Please let us know if you need further assistance.Alan P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
82 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
43 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment