PDA

View Full Version : Accessing Properties of other Indicators


WolliWilli
11-20-2009, 03:26 AM
Is it possible to access properties of other indicators on the same chart in a way comparable to the access below to DrawObjects?

foreach(IDrawObject drawObject in DrawObjects)
{
if (drawObject.DrawType == DrawType.Ray && drawObject.Tag == "ABC")
{
// Do something here
break;
}
}

NinjaTrader_Dierk
11-20-2009, 06:29 AM
Unfortunately this is not supported.