I want to read inside my strategy, if a Line object drawn on the chart by an external indicator is "Solid" or "Dash" style. For now I'm using:
foreach (DrawingTool draw in DrawObjects.ToList())
{
}
And successfully read all the objects drawn on chart... but I want to get information regarding Lines but depending if they are "Solid" or "Dash".
¿How I can read that property?
Thank you!

Comment