I have an indicator that draws Text objects on chart. I want to be able to read from code, the string that is drawn on the chart, the text color, font, etc.
Currently Im detecting that object using:
foreach (DrawingTool draw in DrawObjects.ToList())
{
if(draw.Name == "Text") Print("Name: "+draw.Name);
}
But the only parameter I'm extracting now is the Name of the object. I want to read the font color, also the actual string content.
Please help!

Comment