Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
After creating an object on the chart, MT allows you to view the values of the object by putting your cursor over it... displaying the yellow box with the values.
Microsoft languages call this a "Tooltip".
Is there a way to modify the content of the "Tooltip"?
I would like to change the content, and if possible, disable some.
After creating an object on the chart, MT allows you to view the values of the object by putting your cursor over it... displaying the yellow box with the values.
Microsoft languages call this a "Tooltip".
Is there a way to modify the content of the "Tooltip"?
I would like to change the content, and if possible, disable some.
not exactly true, in that if it is a custom indicator, the author has the ability to name the object, and determine what value will be displayed... on a trendline, the name of the trendline can be changed...
bool ObjectSetText( string name, string text, int font_size, string font=NULL, color text_color=CLR_NONE)
Sets object description. If the function succeeds, the return value will be true. If the function fails, the return value will be false. To get the detailed error information, call GetLastError() function.
Parameters:
name - Object name.
text - Some text.
font_size - Font size in points.
font - Font name.
text_color - Text color.
Sample:
ObjectSetText("text_object", "Hello world!", 10, "Times New Roman", Green);
__________________ "You should not have a favourite weapon. To become over-familiar with one weapon is as much a fault as not knowing it sufficiently well. You should not copy others, but use weapons which you can handle properly. It is bad for commanders and troopers to have likes and dislikes. These are things you must learn thoroughly." Miyamoto Musashi
not exactly true, in that if it is a custom indicator, the author has the ability to name the object, and determine what value will be displayed... on a trendline, the name of the trendline can be changed...
bool ObjectSetText( string name, string text, int font_size, string font=NULL, color text_color=CLR_NONE)
Sets object description. If the function succeeds, the return value will be true. If the function fails, the return value will be false. To get the detailed error information, call GetLastError() function.
Parameters:
name - Object name.
text - Some text.
font_size - Font size in points.
font - Font name.
text_color - Text color.
Sample:
ObjectSetText("text_object", "Hello world!", 10, "Times New Roman", Green);
Yes UR right. But I thought the question was about toltip with no object , just standard toltip window with OHLC information.
not exactly true, in that if it is a custom indicator, the author has the ability to name the object, and determine what value will be displayed... on a trendline, the name of the trendline can be changed...
bool ObjectSetText( string name, string text, int font_size, string font=NULL, color text_color=CLR_NONE)
Sets object description. If the function succeeds, the return value will be true. If the function fails, the return value will be false. To get the detailed error information, call GetLastError() function.
Parameters:
name - Object name.
text - Some text.
font_size - Font size in points.
font - Font name.
text_color - Text color.
Sample:
ObjectSetText("text_object", "Hello world!", 10, "Times New Roman", Green);
Oh thanks!
I've created a custom indicator, and I want to offset my support and resistance arrows by n pips... but I want to report the actual value... this should let me do it.
Sorry about the confusion with the tooltip... I appreciates all replies!