Expert Advisors and Automated Trading - page 426

I'm looking for some EA developers I can hire from time to time when I need some work done. If your English is good and you have good feedback on here please add me on Skype Dave9021021
On two separate accounts when using a specific EA I purchased my charts will update themselves after I enter a trade. The chart will go black and it will say Chart Updating. This process only last 1-2 seconds and the chart goes back to normal. Since I'm in a trade when this happens will the EA not...
Hi, Yet trying to ease the optimization process of an EA, I'm wondering how to exclude sub-param if the main param is turned to on - in a way to win time. Example : UseMA= falseMAPeriod = 15 <-- don't want the optimizer to try all the period possible if UseMA is turned to false Any help...
Hi, 1.) Is it possible to add a time/date limitation to an EA? For example "available till 2015.07.30" after that date, it will not be able to use. Or something like that. 2.) Is it possible to add an account number limitation to an EA?(or something like that) For example, I'll compile the EA and...
Hello guys, Someone knows a way to authenticate an user access to use an EA through a simple file (TXT or CSV) in a web folder without DLL or mysql?I was using this simple code:extern string name = "August";extern string email = "august@email.com";extern string acc_n = "123456";...int start() { if...
Hello, Could anyone confirm if book events are or are not handled by the OnBookEvent() method when executing EA in the Strategy Tester? My personal experience is that the method is never called in test mode. Thank you, Fábio
Well, I read about 'tester' at this site and forum, but did not find an answer to my question: how can Strategy Tester MT4 present good results, that I don't see back in real trading? I use 'every tick'-mode in tester, but it seems that in real trading it makes less profits and more losses. So what...
i want to use realtime live currency correlation factor  indicator and  i have one indicator for entering buy/sell based on the realtime live currency correlation factor, anybody can help, kindly provide mail id, thanks in advance
Hello everyone, I want to be a new trader on this platform but first I have to get anwers for every question that bothers me :) The biggest question I want to ask is that when I use one brokers account for copying trades with subscription from this site, can I still use the same account to open
also, can i iterate through objects on chart using CObject Prev and Next methods
I have almost finished coding my first EA and exited about doing a proper backtesting soon. At first I thought I would use the data available in history center, but then this thread (link below) suggested to download data from dukascopy instead? What are you guys' opinion on this? Is the data in...
hi... I'm not a trader: I'm a programmer and, starting from there, I created a nice little neural EA, tested it, and it work great! My problem is in the lot size: the original example program use the minimum size, like this lot_size=SymbolInfoDouble(my_symbol,SYMBOL_VOLUME_MIN); that was good...
[Deleted]
  why ???  (11   1 2)
last hour doing backtest on mt5 , tester graph showed good performance but now like this... can anyone tell me why ?
Dear fellow traders, I am going to ask you most probably a very stupid question and most probably this question was asked many times before but I am willing to take a risk here. Do Expert Advisors really work in the long term? Do they work at all? I have used them in the past just to see my...
Hi, I'd like to know when a deal is closed by hitting a SL how to detect it ? By browsing the history I can know if the deal has been closed or not, but how to read the way the deal is closed (sl hit) ?
Hi, I have written an EA in mql 4 based on moving average crossover confirmed by ADX. On comilation, meta editor is giving warnings as shown in figure. However,this EA is working fine in strategy tester on EURUSD 1 hr chart. Can anybody help me to rectify the warnings. Thanks in advance.
[Deleted]
Hello forum, good day. I need help identifying why am I getting an Array Out of Range error so I can solve this. What I'm trying to do is to move right and left 'N' number of bars from a certain point in a Moving Average. The problem occurs 10 bars or so after starting the Strategy Tester. I have...
  Hide "dependencies" DLL  (12   1 2)
Hi, is there any function in MQL to hide "dependencies" DLL in EA? Thx.
  SCANNER  (2)
I NEED A SCANNER THAT WOULD SCAN FROM A DAILY CHART AND COME UP WITH A CURRENCY IN A 3-5 DAY RETRACEMENT (3-5 RED BARS ) AND ON THE 4TH - 6TH DAY A GREEN FORMS, WHOSE -LOW IS HIGHER THAN THE PREVIOUS BAR'S LOW. - HIGH IS HIGHER THAN THE PREVIOUS BAR'S HIGH. -CLOSE IS HIGHER THAN THE...
I need help with learning the VTS (Visual Traders Studio). I am looking for a Consultant/Trainer in VTS to help me with creating EA's.
IF (something == something) return (this); <-- where do i add a Print ("this")? im having trouble adding the print part alongside the return call. any help? code: if (X==Z) return (0) ; else X=Y(); // Print ("WUT")
sorry if this question has already been asked before, but I couldn't find it at all I'm new to ea programming and used an online builder to make a simple ea, that would just buy when RSI got above 25 and sell when got under 75, and a take profit command but when i paste the code into the editor...
Hi   Do you know how to tackle this isuues of pivot backtesting.I have had coder who did Pivot EA for me but I cant backtest it.Any ideas how to sort it out? 
hello, can anyone help me out with an EA there is some problem on it. when ever it wants to buy it sells and it sells wen it wants to buy.... please can some one re-code the EA and change the order..
I followed the instructions given in few sites, which basically consist of making your mt4 offline, deleting old history, downloading m1 history, importing it, converting it to m5, m15, m30, h1, restarting. My problem is that for m15 i'm getting model quality of 90% but m30 and upwards is giving me
New to metatrade, check if EA will function if I've subscribed to a trading signals?
its a simple strategy i tried to build a EA but failed. it wont take long to program this simple bot if you could DM me here or on skype we can discuss the strategy&nbsp;
I have a problem when i am trying to Complie my BinaryOption EA that i just "remade" from being an Indicator to an Expert Advisor.. I have remode it so it runs in #property strict and Tick() mode and i have only 1 error left.. the error saz -----> 'ver' - #import was not closed im figuring i...
Hello, Is it possible to use a copy EA on a subscribed signal? I want to copy trades on a demo account that has a signal subscription, and then use the slave on a live account so I can use the lot size that I want, and not the author of the signal. Thanks!
Hello all, I'm writing my first EA based on Standard Library. I was able to write my custom signal class inherited from CExpertSignal, it works fine in opening long and short position. Now I want to add the ability to close that position when the signals say so, just I fail to see to implement it...