protected override void OnBarUpdate()
{
//Add your custom indicator logic here.
foreach (DrawingTool draw in DrawObjects)
{
if (draw is DrawingTools.Ray)
{
DrawingTools.Ray myRay = draw as DrawingTools.Ray;
Print(string.Format("line color: {0}, Brushes.DarkRed: {1}", myRay.Stroke.Brush, Brushes.DarkRed));
if (myRay.Stroke.Brush == Brushes.DarkRed)
{
myRay.Stroke.Brush = Brushes.Black;
}
}
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Unable to detect the color of ray
Collapse
X
-
Unable to detect the color of ray
I am trying to detect a color of a ray or line that is manually drawn. The following describes the code I am using to detect the color of a ray object. I am drawing the ray on the chart and setting it to "Dark Red". The conditional statement comparing the color of the ray to Brushes.DarkRed never evaluates to True even though the print statement shows the values to be the exactly the same, "#FF8B0000". Not sure what I am doing wrong, but any assistance would be appreciated.
Code:Tags: None
-
Hello,
Thank you for the post.
In this case, an == with the brush objects would likely result in an untended comparison. Instead you could compare the string of each brush:
Code:if (Equals(myRay.Stroke.Brush.ToString(), Brushes.DarkRed.ToString())) { myRay.Stroke.Brush = Brushes.Black; }
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, Today, 06:46 AM
|
0 responses
7 views
0 likes
|
Last Post
by Mindset
Today, 06:46 AM
|
||
|
Started by M4ndoo, Yesterday, 05:21 PM
|
0 responses
11 views
0 likes
|
Last Post
by M4ndoo
Yesterday, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
13 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
81 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
46 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment