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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
63 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
35 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
54 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
61 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
48 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment