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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
131 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
74 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
117 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
111 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
89 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment