I have this code line in my indicator that draws text on my chart whenever the respective alarm is armed:
Draw.TextFixed(this, "AlertArmed", " FC ALERT ARMED " + "(Distance: " + emaDistance + ")", TextPosition.TopRight, Brushes.White, smallFont, Brushes.Black, Brushes.Purple, 100);
Now the fixed position TopRight is not always ideal. So it is possible to set an Textoffset (eg. 100 pixels to the left) ?
Haven´t found anything about that in the online manuals nor here in the forum.
Also I don´t know if the classical Draw.Text would work for this?
Thanks for the help
Peter

Comment