- Search Energy EXCH
-
kennyhubbard replied May 12, 2010Hi gilos, Nah, never been to KL before, but I travel quite a lot so its possble I may end up in KL for a day or two sometime in the future. Sure, I can add the ATR trail........just give me a couple of days and I 'll post it here.
open/close script based on atr
-
kennyhubbard replied May 11, 2010Yup, that was the idea. I was just playing around and have removed the bits that I was playing with.....left that in by mistake, so at the moment it does nothing.
I'm seeking a trailing stop EA that surely must exist, any ideas?
-
kennyhubbard replied May 11, 2010Ya, it needs to be on the chart of the instrument that it is controlling..... But I have changed it now to use the correct Bid/Ask price, so , hopefully, this one will control all properly. You will also notice an OrderModify error 1 from time to ...
I'm seeking a trailing stop EA that surely must exist, any ideas?
-
kennyhubbard replied May 11, 2010Hi there, I think you are right. Well spotted. Here is the (hopefully) fixed version.
I'm seeking a trailing stop EA that surely must exist, any ideas?
-
kennyhubbard replied May 11, 2010That should be easy enough to make. Give me a day or two. Do you need just market orders, or are we looking at pending orders including the possible cancellation of the orders? Also need a brief outline of the text of the email you would like. Do ...
EA to email new orders... like a signal EA
-
kennyhubbard replied May 11, 2010Here you go, In order to test it, I have it opening 2 orders(1 buy & 1 sell). You can then run it in visual backtest mode to see it in operation. When ready to use, just delete the couple of lines at the beginning of the start() function that sends ...
I'm seeking a trailing stop EA that surely must exist, any ideas?
-
kennyhubbard replied May 11, 2010Here you go..... Set tradesize to zero to let the MM calculate lotsize. Set stoploss or takeprofit to any negative number if you want no stoploss or takeprofit. If you have no stoploss, you must enter a manual tradesize. Provides some on screen ...
open/close script based on atr
-
kennyhubbard replied May 9, 2010Here you go. I haven't tested it extensively, so check it out and report any bugs here.
Pop up alert for indicator main move change
-
kennyhubbard replied May 9, 2010Here you go................
Request: need alert for indicator...i-cai mt4
-
kennyhubbard replied May 7, 2010Is it a demo account? If so, just log in on your laptop, go to the mailbox tab of the terminal and get your password out of the mail that you would have received when you created the account. Then use that to log in via your pc.
Need some help on MT4
-
kennyhubbard replied May 7, 2010Yeah, your password on your PC is incorrect. Invalid account is either an expired demo account or it is an account number/password mismatch. The fact that you can log in as an investor or as a trader from another computer tells me the password is ...
Need some help on MT4
-
kennyhubbard replied May 7, 2010What does it say in the Journal tab when you try log in normally?
Need some help on MT4
-
kennyhubbard replied May 6, 2010Try this, Haven't tested it, so report any bugs here. I didn't realise people still used 4 digit brokers


Modification Required!
-
kennyhubbard replied May 5, 2010int Allowed_Orders = 10; int start() { if (My_Orders() < Allowed_Orders){ ............your BUY & SELL instructions here } ...............rest of your code goes here return(0); }//end of start() //---------------------------------------------+ int ...
Opening Too Many Positions
-
kennyhubbard replied May 5, 2010Hi there, I would just go the Global Variable(Gvar) route......you can have something like 10 000 Gvars, so if you can keep track of the different instances of the EA, there should be no issue storing as many variables as you like. I typically use a ...
Passing String Variables Using Globals
-
kennyhubbard replied May 4, 2010It appears not.....even if you try and create it manually in the platform it will not accept alpha characters. I guess the next best would be to either write to file, or if it's a really short string, you could convert and store each letter ...
Passing String Variables Using Globals
-
kennyhubbard replied May 4, 2010MT4 has been known to have memory leak issues. I simply reboot every so often and then no problem. Do you have a resource monitor as the memory is always the first to be consumed. I had a platform fill my hard drive with junk(180GB), since ...
MT4 speed and workability