I have an indicator that plots a Text on chart. I want to read the content of that object so I can use the information inside.
Currently Im using
foreach(DrawingTool draw in DrawObjects.ToList())
{}
and I was able to identify the anchor.Price. But I would like to get the actual string or context inside the text.
Let me know how I could do this.
Thank you!

Comment