chart on object has no name or ID.what kind of object is it?how to select it?
-

what kind of object is it?
it can't be selected or deleted?
can any one tell me how to know this object name? -
This is known as Comment. In MQL4/MQL5 there is a function called Comment() and it prints this text over there. It does not appear as an object. In fxDreema you can print information there with the Comment (ugly) block. Later I made another block (Comment) that now uses some regular text objects to print better looking information.
You can't select this comment and it can be deleted in the source code if you do Comment(""); Basically you set the comment to empty text, which is not visible.
-
thanks @fxDreema