Expert Advisors and Automated Trading - page 305

Hi so i am using zeroMQ to get data for my machine learning algorithm in python. but once my model has made a prediction i want a way to efficiently draw arrows to different symbols on my mt4. preferably a way that does not involve using an intermediate file rather using zeroMQ or other methods....
Hi, I am searching for an EA that can only open an order when the candle closesabove or below a specific price. Could somebody help me? Thanks.
I have a template, when it confirm the parameters of the strategy to a buy/sell, the template insert an object (arrow). I'm wondering if there a chance to build an EA which indentify the buy arrow or sell arrow and open a trade or if is better with a condicional command to open the trade if the
Any good articles on how to make use of neural network or machine learning in identifying market inefficiencies and forming EA? More specifically, what kinds of neural network architecture/machine learning techniques, usage of features, how to train it, and how to perform backtest.
Hi, I didn't find any good doc about how to handle 3 & 4 digits for my EAs. My code looks like this: double buySL = Ask - SL * _Point; double buyTP = Ask + TP * _Point; int openBuy(double buySL = 0, double buyTP = 0) { return OrderSend(_Symbol,OP_BUY
Hi everyone, i trey this cod for close open order after 1H but cant close after 1H. can you help me and repair  for this cod. tanks for all. //+------------------------------------------------------------------+//|                                                                  |//|...
  2 MA's EA wanted  (1)
Hi! Does anyone of you know of an EA that opens a trade when price crosses the first MA and closes when price crosses the second MA? Can be a semi-automatic script too. MT4 This is NOT a MA crossover EA of which there are plenty. Thank you! Ben
Hello all ! I have two machines with different MT5 builds installed. The oldest one is build 1643, downloaded from my brokerage account at ActivTrades. The newest one is buid 1730, downloaded directly from MetaQuotes. When trying to export the tick data file from the newest MT5 instance, I noticed
Can someone help here ... the operator is overloaded, actually it should work  //+------------------------------------------------------------------+//|                                                     PlusPlus.mq5 |//+------------------------------------------------------------------+struct...
I have not registered any signals yet. Why does the notification say the account has been registered?
So I'm trying to turn an indicator I wrote into an EA. I coded the logic into the indicator so the buffers draw a line where my SLs should be, as well as drawing arrows where my entries and exits are. How would i phrase it using iCustom so that it places my trades based on those buffers? Would it...
Dear All, Can you please confirm if we can create EA which will be used for Meta 5 but indicator itself is for Meta 4?  Regards, 
Hello, I need a macro or a programme which can export 1000 last bars for a given list of currency pairs and time  frames (eg EURUSD, USDCAD,USDCHF AND GBPCAD) - DAILY AND HOURLY TIMEFRAMES, I need this as fast as possible - can you help me?? Dave
Hi, is there a way to make iBarShift to return indexes from left to right? I like to work with Arrays where 0 means the oldest bar, butiBarShift return it the other way round. Test case in OnCalculate:   for(int bar_number=prev_calculated; bar_number<rates_total;       bar_number++)...
Hello everybody, I'm searching for a good advise from experienced seller. I'd like to offer my EA  using MQL5 market...however I can't pass automatic test which is obligatory. While testing I receive message "test on EURUSD,H1 tester takes too long time" I assume that the reason of that are bad...
i don't know programming. I am giving i'e EA open first lot 0.01 2nd lot 0.02 third 0.04 4th 0.08 every double from last, i need every thing is fine only all lots open same size means if i set 0.01 lot second lot 0.01 third 0.01 4th 0.01 i am copying here if any expert please help me and modify i...
Hello everyone. I'm new to this forum and looking for a Programmer that specializes in Mql4. So far I have hired 2 programmers for this EA. The first quit, the second made an EA the does n't work. I did n't think this was that complex. I need an EA that enters trades when I'm asleep or at work, and...
I am new to mql4 programming. I want want to understand some fundamental. I have this testing EA whose code is displayed below. How do I stop it from multiple entry. Like when the condition for buy is true, it enters buy on every tick, the same with sell. My question is how to i stop it from...
Hi,  I'm trying to code my strategy into my indicator so it prints buy/sell arrows that I can easily convert into an EA, however I'm having some troubles coding the logic for it. Here's what I have coded for it so far: if (LS) {    x = 1;   } if (x==1 && mColor==Green) {    x =2; } if (x==2) {...
Guys please, so urgent I need a code that delete pending orders when an order is executed
Dear All, Any one knows, how to run EA on 2 min time frame? If you are running EA on 2 min then please share it with me.  Regards, 
[Deleted]
We have used the WebRequest function to send data to the server side and everything has been running normally for the previous 2 years. This latest version is present, and stops all Expert Advisor activities at VPS. At the end of 2018. During this year we have changed all of our EAs...
hello, I am working on a EA  by using mql5 wizard generator. I did not really understand how the signal mechanism module and intra time filter works. I need to open trades only in particular hours of the day. So as I understood bitmap for bad hours of the day I have to convert from binary to decimal...
Hello guys, I'm new to coding EA. I wanna create an EA that can buy when all three moving averages are crossed over to the upside and the distance between the FastMA (21 EMA) and SlowMA(50EMA) is at least 50 pips. The opposite is the same for selling condition. Another problem is that how do I code...
for ( int TrC = OrdersTotal() - 1; TrC >= 0; TrC -- )   {        if ( !OrderSelect( TrC, SELECT_BY_POS,MODE_TRADES ) ) { Print( "OrderSelect Error #:", GetLastError());  continue;  }      if ( OrderSymbol() != symb || OrderMagicNumber() != mgn ) continue;       //symb is desired symbol and mgn is...
Hi,  Maybe someone have met such a problem before. After I start my EA it places both pending orders, but doesn't print anything. And it doesn't give any error. Just like it didn't see those two "if - else" operators below orders. Both orders are places correctly, so everything declared inside...
Hi guys, I am totally new to programming and I am getting crazy of this error. It always gives me Error 0 with "ticket_1". I have no freaking idea whyif(ticket_0==0 || ticket_1==0 || ticket_2==0){            SL_0 = Ask - 200*_Point;            TP_0 = Ask + 100*_Point;            ticket_0 =...
hi guys i'm a professional coder of mql4/5 EAs from several years i'm specialized in backtest optimization on custom data on mt5, using most advanced optimization tecniques, using special formula for custom optimization criterion working primary on backtest optimizations, my obsession is obviously...
>>> can you help me please ? I can not find the equivalent in MQL5 doing sort for ((( string values ))) .... this my code in MQL4 and ArraySort works OK in string values string x[];ArrayResize(x,OrdersTotal()+1);for(int i=0;i<OrdersTotal();i++)      {         if(OrderSelect(i,SELECT_BY_POS...