I was looking at the documentation https://ninjatrader.com/support/helpGuides/nt8/NT%20HelpGuide%20English.html?drawingtools_drawobj ects.htm, but testing it, it seems that my indicator doesn't see and drawobject that was created by another indicator. On the other hand, if my indicator creat and object, it works. Here is what I am trying to do as a test (first draw a line to see that it works):
protected override void OnBarUpdate()
{
// Loops through the DrawObjects collection via a threadsafe list copy
foreach (DrawingTool draw in DrawObjects.ToList( ))
{
if (draw is DrawingTools.ArrowUp || draw is DrawingTools.ArrowUp)
{
// Indicates if this is a manually drawn or script generated line
Draw.VerticalLine(this, @"Signal " + Convert.ToString(CurrentBars[0]), 0, Brushes.White);
}
}
}
I did search the forum and couldn't find any similar issue. I know this is possible, as there are some solutions out there to execute orders based on the same input. Any suggestions?

Comment