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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
135 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
290 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
238 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
331 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
171 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment