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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
23 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
13 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
8 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
10 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment