Expert Advisors and Automated Trading - page 392

Hi there I have the 4 ea's that performing the same function, which is trail pending orders(they follow the open price).each one an order at specified distance the type of orders are the buy stop, sell stop, sell limit and buy limit. Now if i launch one (e.g trail buy limit) EA of them on the...
hy I want to ask, how to make a script hidden pending order  Thank 
hallo  how to make a profit or loss calculation script in mt4 Thank
Hi, I try to code an EA. Buy signal: bar n-2 close below my SMA + bar n-1 close above SMA => Open BUY Sell signal: bar n-2 close above my SMA + bar n-1 close below SMA => Open SELL Please find below a picture of the signal. My code is: double sma_1 = iMA(NULL,0...
I use a harmonic scanner which makes trades for you to get into. anyone know about it
Hi, I wanted to use this code in my expert but the code not being compiled.The compiler shows error. How to make this code without switch and case operator.Please help I just started to learn mql coding. <decompiled code removed >
Hi, Is it possible to read through code the data from the mailbox and calendar tabs?
Does anyone know a good way to calculate or measure price velocity? I'm not asking for mql4 code. Just good ideas input from many different people.&nbsp;
Hi, so instead of putting a Take profit in points, I used another expression if(LongPositionOpen() == true &amp;&amp; rate[1].close &gt; BBMidle[1])&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trade...
Write a semi-automatic Ea, click the button to open, back when the button can display, but click invalid. When not back to the test is normal. Click button to place orders. I do not know if you have encountered this problem, I found that someone's EA can be used to achieve the back test button....
Hello, I would like to know if there is an Harmonic Pattern indicator that can be used in an EA. I have sawn several indicators and none of them can be used in an EA. Do you know one that can be? Thank you in advance! Regards
  ea problem  (2)
i have problem with ea. my hedging recovery works on my mt4 but doesnt work on my vps. any one can help me?
Hello again folks. I have one Expert Advisor (EA) which loads 2 indicators. Indicator 1 is a moving average (IND_MA / top indicator) and Indicator 2 is a custom indicator (IND_CUSTOM / bottom indicator) which reads the information from the moving average indicator on every tick and output the...
Dear All, during the last updates the results of the Stategy Tester became wors and worse. Now in Build 1405 I found the following situation which is complete nonsense: "Ergebnis" is result and "Gewinn" is profit. Please check yourself, bearing in mind that I started with a deposit of 2000 Has
I have a function within DLL that uses OpenMP to parallelize few loops. The functions have been tested/exported by calling them from an app built in C++ and everything works nicely (method used for linking). I then export the functions toMQL4 (method used for linking) where the code also works but...
  FANN2
Hi&nbsp; I have read articles about artifical neural network. There is a library named FANN2 developed for stockmerket and forex trading. As I see, it is a very difficult area, we can develop experts and indicators with this skill. There is anybody with some experience about it? The first question:...
I rent an EA put on 5 different charts, 3 of them show me only About and Common no Inputs. This happen also with other EA,s No messages or problems i recieve on MT4. What can be the prob.?
Hi - I'm looking through the EA market here &amp; cannot find what I'm after, please help or point me in the right direction. I'm sure it's here somewhere so sorry, just cannot find it. All I need is a Simple EA / Code / Robot, where I can input the following, for ANY market on MT4. Open a...
Dear can any one solve this question how to get martingle lot size by using sum of lotsize instead of number of loss trades i am attaching an image please check
Hi there i'm trying to calculate the fast Stochastic  %K on a array and for some reason the function does not refresh and work out a new reading as the array increases in size and adds new values...
Hi everybody. How can I incorporate fundamental economic data (Such as "actual", "forecast" or "previous" data of a news release) into an Expert Advisor? Which platform (MT4 or MT5) has that capability? What function() to call in MQL4 or MQL5 such data from a website such as Forex Factory? Thank you...
Hi, I'm fairly new to mt and trading. I'm experimenting with a few experts and I'm wondering if it's possible to change expert settings across multiple charts at once. At the moment I have to edit the expert on each individual chart at a time. So say if you have six charts open and I want to change
I have reached to point where testing my EA takes too much time. In MQL Cloud Network is as if possible to speed up testing time 150 times. I have only demo account in Admiral Markets UK Ltd. Using MQL Cloud Network means user can sell or buy that service. So when I create real account in Admiral...
  Signal Copying  (3)
Dear Team, In copying someone's signal, assuming that the provider trades in GBPNZD , must I have this symbol in my Market Watch list in order for me to copy trades on this Symbol? Regards
  Repeat Order EA  (2)
Hello Folks First post in the forum here so just wanted to say a quick hello first and hope your all doing well! On to business! I have been looking for an EA that just repeats the same (buy or sell) order over and over. The order is simply closed by SL or TP set up the user. A nice add on to the EA
Hi is there such expert ? &nbsp;i&nbsp;&nbsp;will insert the information about the support/resistance levels from a console/web page and it will &nbsp;see it on MT4 platform.
Hi, In my EA, when I try to change pending orders it generates Error 130 a lot of times... I know that its because the SL levels but I don't understand how before it worked for the same order and now doesn't work! I have seen&nbsp;https://book.mql4.com/appendix/limits, changed to code and the...
[Deleted]
and how to get it ? confusing...&nbsp; &nbsp; buy low sell high seems is the easy job but how to ensure that point is highest or lowest ?&nbsp;
In MT4, EAs identify orders by magic number. But in MT5, one symbol has only one position at one time, and it has only one magic number at one time. EA can find deals by POSITION_ID. But if positions reverse, POSITION_ID changes. So after positions reverse, EAs might lose controls of the position....