You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
Is anyone here able to provide me with the files for this please? Would really love to be able to use this sort of functionality, I've gone through to fx1.net and can't find anything at all. Tried googling but haven't had any luck finding downloads of all the files.
If anyone would be kind enough to provide copies it would be greatly appreciated. my email is paul@lukafour3.com or just pm me
Kind regards
Paul
Hi,
Is anyone here able to provide me with the files for this please? Would really love to be able to use this sort of functionality, I've gone through to fx1.net and can't find anything at all. Tried googling but haven't had any luck finding downloads of all the files.
If anyone would be kind enough to provide copies it would be greatly appreciated. my email is paul@lukafour3.com or just pm me
Kind regards
Paul
Actually, I do not understand your problem.
I got my copies by visiting fx1.net first which led me to this site:
https://www.mql5.com/go?link=http://taurus-traders.com/index.php/de/services/forex-download/viewdownload/6-plugins/246-mt4gui-toolbox-addon-for-metatrader
I got the dll's from there. The "Download" button is at the bottom of the page, after the text.
It is all explained how to use the functions to create buttons.
Just remember the down-sides and first thoroughly test your program on demos, to avoid unpleasant surprises
if you are going to use these buttons in real account live trading !!!
Also, read this thread from the begining to end!
AND: Did you Google for "mt4gui.dll" ??? Try, you will be surprised how easy this is !!!
Hi,
I wrote a simple EA based on MT4GUI, but unfortunately MT4 crashes, when I try to change timeframe (e.g. from M1 to M5). Did anyone else experience this or have an idea how to fix it?
I tried many ways but so far couldn't find a solution. Even the simpliest EA with buttons crashes, when changing timeframes. I experienced the issue on builds 432 and 438.
Thanks
Hi,
I wrote a simple EA based on MT4GUI, but unfortunately MT4 crashes, when I try to change timeframe (e.g. from M1 to M5). Did anyone else experience this or have an idea how to fix it?
I tried many ways but so far couldn't find a solution. Even the simpliest EA with buttons crashes, when changing timeframes. I experienced the issue on builds 432 and 438.
Thanks
Yes, it does. I wrote about this earlier.
There is nothing you can do about it, it is a dll issue.
Just work around by opening many charts, each with different TF.
Or, I also do it like this:
There is another situation, when the dll's crash MT4, when you want to modify externs by clicking the smiley face.
That is why I made the Defaults button, which removes the EA and opens it again, popping up the EA initiation window.
Hi Dadas,
can you insert part your code, please? I don´t know create menu about "Select Lot size". Thank you.
Hi Dadas,
can you insert part your code, please? I don´t know create menu about "Select Lot size". Thank you.
This is how I do it.
sample .
tbAddListItem(hwnd,SelectLotSizeBox ,"10.00");
Hi Dadas,
thank you very much for insert your past code!!! I have it my code :-)
But I have one question - how I get value (lot size) from select menu (object SelectLotSizeBox).
I found function: string tbGetListSel(int hwnd, int object);
Code: string size=tbGetListSel(hwnd, SelectLotSizeBox);
return for select lotsize 0.01 value zero,
for select lotsize 0.02 value 1 etc. This is serial number from select item. Can I get directly value lotsize (0.01; 0.02; etc.)?
Thank you for help me.
sample .
tbAddListItem(hwnd,SelectLotSizeBox ,"10.00");
Are you familiar with this?
This will Get you the value :The text in the select box is text, so string - right?
And you must make this string to double - right?
Hi Dadas,
I found function: string tbGetListSel(int hwnd, int object);
Code: string size=tbGetListSel(hwnd, SelectLotSizeBox);
return for select lotsize 0.01 value zero,
for select lotsize 0.02 value 1 etc. This is serial number from select item. Can I get directly value lotsize (0.01; 0.02; etc.)?
Thank you for help me.