Thank you.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Mini Data Box
Collapse
X
-
Mini Data Box
Currently the Mini Data Box is only displayed for 1 bar when the middle mouse button is held down. Is there a way for me to incorporate it into an indicator so that I can display it for more than 1 bar in different locations, and leave it on the chart until I close it?
Thank you. -
Line Breaks for Drawtext
This is a slightly different question but related, so I will ask it here. Is there a way for me to include line breaks in DrawText? I have the following line in my code:
DrawText (TagdiffV + CurrentBar, diffV.ToString(), 0, Low[0] - 2 * TickSize, Color.Red);
I would like to add other varibles to the ToString part. It seems to work if I just add them as follows: diffV.ToString + AltV.ToString etc, but it places them in a line next to each other on the chart. I would like them to appear on separate lines in a similar manner to the Mini Data Box. Is there a way to code these line breaks in NT?
Thanks.
Comment
-
Thanks for your response Partick_H. That works if I just want to see the words on the charts, but if the words are variables for calculations, I do not see the figures. If I remove the quotes it will not compile. Is there a way where "Hello" = 250 and "There" = 2 (after internal calculations) for me to see both figures on separate lines?
Comment
-
Originally posted by GeorgeW View PostThis is a slightly different question but related, so I will ask it here. Is there a way for me to include line breaks in DrawText? I have the following line in my code:
DrawText (TagdiffV + CurrentBar, diffV.ToString(), 0, Low[0] - 2 * TickSize, Color.Red);
I would like to add other varibles to the ToString part. It seems to work if I just add them as follows: diffV.ToString + AltV.ToString etc, but it places them in a line next to each other on the chart. I would like them to appear on separate lines in a similar manner to the Mini Data Box. Is there a way to code these line breaks in NT?
Thanks.Read up about "escape sequences".Code:diffV.ToString() + "\n" + AltV.ToString()
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
608 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
355 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
561 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment