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;
}
}
foreach(IDrawObject drawObject in DrawObjects)
{
if (drawObject.DrawType == DrawType.Ray && drawObject.Tag == "ABC")
{
// Do something here
break;
}
}