Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Getting draw object information
Collapse
X
-
Comment
-
Not sure what exactly you are looking for. The methods to draw objects usually have parameters to set color etc. See e.g. DrawText: http://www.ninjatrader-support.com/H.../DrawText.html
Comment
-
how to drawtext bigger?
Hi all,
Im doing a drawtext on the indicator but the text is very very small on the chartl. how do I make the text bigger?
if (Rising(SMASlow))
{
DrawText("text" +0, " 1 Min 50ma".ToString() , 0 ,SMASlow[0] , Color.Black);
}
Thanks
Jack
Comment
-
Jack, please use one of the more advanced overloads for DrawText available that would let you specifiy a font input of your choosing, this would include font type and size -
DrawText(string tag, bool autoScale, string text, int barsAgo, double y, int yPixelOffset, Color textColor, Font font, StringAlignment alignment, Color outlineColor, Color areaColor, int areaOpacity)
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
633 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
364 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
567 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
568 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment