I need to display additional information with the crosshair. Is there a way to detect when the user switched to crosshair mode and use the mouse position info to draw some text that follows the cursor?
1
There are 1 answers
Related Questions in MQL5
- How to create MQL5 Keltner Channel programmatically
- why my EA does not buy and sell automatically?
- Convert function average price MQL4 to MQL5
- Can't send Take Profit and Stop loss values when posting new order to Dxtrade using Dxtrade API
- Whats the difference between telegram user messages and bots?
- How to reuse the same array, but starting at another index in mql5?
- In MQL5 how to calculate the target price for an order( or position) to make a predetermined profit(or Loss)?
- Function to Move Stop Loss to Break Even not working
- The close prices of two currency pairs are not displayed properly when it in a subwindow
- Upgrade old MT4 EA to new MT4 EA
- Check if SMA is below certain RSI level in MQL5 programming
- cmd command in ShellExecuteW
- News Filter EA for MT4
- how can i write mql5 code that close the positions profits are equal to 0 and generate any lossses?
- Last order openprice in MQL5
Related Questions in METATRADER5
- Cannot install MT5 python on Mac M1
- Autotrading disabled by client when running python script for metatrader5
- Can't send Take Profit and Stop loss values when posting new order to Dxtrade using Dxtrade API
- Metatrader 5 closes after initialization
- Fail to install python Library MetaTrader5 on wine (No matching distribution found for MetaTrader5)
- In MQL5 how to calculate the target price for an order( or position) to make a predetermined profit(or Loss)?
- MetaTrader 5 C++ code question about trading
- Upgrade old MT4 EA to new MT4 EA
- PYTHON change datetime.date.today()
- Check if SMA is below certain RSI level in MQL5 programming
- Socket between MetaTrader 5 and Python
- How to create an event listener and infinite loop using python pyrogram
- import MetaTrader5 no module found
- how can i write mql5 code that close the positions profits are equal to 0 and generate any lossses?
- 'OrderSend' - wrong parameters count
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
No direct controls of built-in Terminal GUI
in MQL5 programming environment
Well, MQL4/5 has no direct control over the MetaTrader Terminal 5 built-in GUI elements and their MMI-state ( the cursor state, the less to switch it on/off ). That was never available to the code-execution engine.
How to add it?
If in a need to have such functionality, one may create one's own GUI-layer and simulate a cross-hair functionality ( altogether with any additional add-on-s ) without waiting for GUI interaction with a built-in cross-hair button. This was possible many years back, even in the original MQL4 code.
So the need is definitely doable in MQL5 code.