Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
globalLine
Collapse
X
-
Hello,
For User Drawn Objects you could use the code below to find all user drawn horizontal lines and print out the value the user drawn horizontal line is drawn at and the color of the horizontal line.
foreach(IDrawObject draw in DrawObjects)
{
if(draw.UserDrawn)
{Print(draw.DrawType.ToString());//you can get the tag of the object to help narrow down results
if(draw.DrawType == DrawType.HorizontalLine)//if the object type is a horizontal line do this
{
IHorizontalLine horizontalLine = draw as IHorizontalLine; //neeed to re define the IDrawingObjects as a Horizontal line to access corect values
Print(horizontalLine.ToString() + horizontalLine.Pen.Color);
}
}
}
For more information on IDrawObject please see the following link, http://www.ninjatrader.com/support/h...drawobject.htm
For more information on IHorizonatalLine please see the following link, http://www.ninjatrader.com/support/h...zontalline.htm
If we can be of any other assistance please let me know.Cody B.NinjaTrader Customer Service
-
Hello,
Can you clarify where you are seeing the comma?
If you are seeing this as where the decimal place is you could use the following to have the value print without any decimal places.
Print(horizontalLine.Y.ToString("#") + " "+ horizontalLine.Pen.Color);
This will print out just the integer value of the Y value. If you wanted to print out with decimals up to a certain point, say up to two decimal places for example, you would format it as ToString("##.##");
You can view more information on Numeric Formatting at the following link, https://msdn.microsoft.com/en-us/lib...vs.110%29.aspxCody B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
559 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
546 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment