- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Aug 19, 2015
One of my demo accounts is an ECN STP account and it is not possible to place orders with a SL or TP. The Order has to be placed without and then modified with the SL and TP. So if your account is the same, you will get the error "invalid stops" if ...
EA works on one MT4 and not on another
- Gumrai replied Aug 17, 2015
They are. But if you had the platform since before 600, on the upgrade the files were copied from the experts folder into the MQL4 experts and indicator folders. The old folder was not deleted. It is still on my platform. So having the old folder ...
What do these file extensions do - mq4, ex4, tpl
- Gumrai replied Aug 17, 2015
Not necessarily, the updates don't remove the old folders where the experts and indis used to be stored.
What do these file extensions do - mq4, ex4, tpl
- Gumrai replied Aug 16, 2015
As it opens in the editor, you can simply click on File - Save as - then save to the appropriate folder (indicator or Expert or script) you can press F7 to compile it. If it compiles with no errors, it should then appear in the list in the platform
What do these file extensions do - mq4, ex4, tpl
- Gumrai replied Aug 15, 2015
They are warnings, not errors as such. The code should still work EA generators produce low quality code, so you will get this. If you are intending to use an EA on a real money account, get a proper coder to make it for you.
Hi Lo Break EA
- Gumrai replied Aug 11, 2015
OBJ_LABEL does not use Time and Price co-ordinates
Please guide me - where am I going wrong
- Gumrai replied Aug 6, 2015
I don't know if useful or not url url
EA fix: Close all positions at profit target X
- Gumrai replied Aug 6, 2015
Sorry, I have no time at the moment
Need indicator that draws horizontal line at candles high/low
- Gumrai replied Aug 4, 2015
I don't know. You will have to ask the broker. I am sure that they will know. As fae as I know, brokers do not issue statements for demo accounts, if that is relevant.
Why c trader don't have a monthly statment
- Gumrai replied Aug 2, 2015
Well, the important thing is that it works

Clearly reading Comments on Screen when running EA
- Gumrai replied Aug 2, 2015
Sorry, my previous reply was corrupted, so I have edited it to make it readable
Clearly reading Comments on Screen when running EA
- Gumrai replied Aug 2, 2015
It should be simple to do Put this with the inputs (or extern, whichever you use) //--- input parameters input int x=0;//X co-ordinate input int y=15;//Y co-ordinate input int width=200;//Width in pixels input int height=400;//Height in pixels input ...
Clearly reading Comments on Screen when running EA
- Gumrai replied Aug 1, 2015
Hi, Try this (it is a script) Once you find the settings that suit you you can change the defaults in the editor If you no longer want it on the chart, open the objects list and delete it
Clearly reading Comments on Screen when running EA
- Gumrai replied Jul 25, 2015
Yes, the code initially runs through the look back bars and stores the zigzag values and bar index in an array. Then it checks through the values in the array to find the largest span. not quite. Just use the same checking loop, but introduce extra ...
Help with analysing ZigZag indicator
- Gumrai replied Jul 25, 2015
Hello, This may give you some help. It is a modification of the actual zigzag code, so no need to have the zigzag indi on the chart as well. It draws text with the span value (in points, not pips) at the point with the biggest zig zag range Maybe ...
Help with analysing ZigZag indicator
- Gumrai replied Jul 8, 2015
The terminology is unfortunate and can be confusing to some. You are referring to a "Global Variable of the client terminal". The earlier posts are referring to a globalscope variable which can only be used in the EA etc where it is declared.
Problems with coding local vs global variables on mql4
- Gumrai replied Jul 6, 2015
It also limits any execution of code to delete the pending orders.Put the limiter code after the code that checks and deletes the pending orders
Problem with deleting pending orders
- Gumrai replied Jul 6, 2015
I received your code I have no idea what this is intended to do for(q=0; q<OrdersTotal(); q++) { if(OrderSelect(q,SELECT_BY_POS,MODE_TRADES) && OrderMagicNumber()==magic) { return; } } but what it means is that if the EA has an open order, then it ...
Problem with deleting pending orders
- Gumrai replied Jul 6, 2015
You can copy and paste your code in a PM if you like
Problem with deleting pending orders