Expert Advisors and Automated Trading - page 295

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...
Hi, I created a EA scanner which can scan stocks from Market Watch and displayed all stocks in each button with name. After few mins all objects are flickering and disappearing. Kindly see the video for better understanding. https://gofile.io/?c=6qkya5
Hello community, when  open symbol information from market view, i can see trading hours for symbol. But i do not find a corresponding function to fetch this information. How do i know, if am currently in trading hours for symbol ? Thank you
  Hedge
Im trying to make a hedge but it wont perform as I want. If I have several orders open in the same position (Have already defined openorders as that), i am defining it that my EA has failed. So then I want to check the trend by using MA on 320 on 15 min charts if its either an BUY or SELL
I am using simple FileReadString(FileHandle) in my EA AceDeal. In text file Command.txt (Placed in Terminal Data Path) is simply string 0.1. Why FileReadString() cannot normally read that string?(???)
  Managing Events  (2)
 hi guys, this is the point: Supposing in 1 instant I have onTick() and OnChartEvent(), which one gets priority? I know when we are inside onTick(), other onTicks events are ignored....what happens when we are inside OnChartEvent()? Thanks a lot.
Hello, I m trying to publish a dashboard expert under metatrader 4 experts section. During the validation I receive an error saying "There are no trading operations" .  Dashboard expert doesnt take any trades. So how can i solve this issue ? I cant add it to indicators section because of it is an...
I'm using the native OrderSend() function in order to open a new position using the below function: uint SendSLTPOrder(long const magic_number,ENUM_ORDER_TYPE orderType,double volume,double price,double stopLoss,double takeProfit)  {   MqlTradeRequest request={0};   request...
Who can optimize my EA from historic data for long term to get better settings for the EA.
  False breakout  (9)
We all know false breakouts are strong market movements. Can anybody tell some code idea how to check a false breakout
Hi guys, I am searching for an Expert advisor which opens Positions when the stochastic oscillator crosses lines positively and the MACD Histogram indicator also crossed the lines positively, do you know such an EA? Thanks a lot in advance
We will describe all the settings for the Brainwashing EAs starting from 1c version
hello guys, I am trying to optimize my EA I ordered in freelance, but after the first 500-504 steps the process goes infinitely slow. The cash is going out from my account with light speed but the processing of the optimization is taking forever, can anyone give some sort of advice how to optimize
This is the code to my Expert Advsor//+------------------------------------------------------------------+//|                                                  masterpiece.mq4 |//|                        Copyright 2019, MetaQuotes Software Corp. |//|...
Hi all, I'm facing a problem when using strategy tester. As the picture attached shows, it just ignore my TP and SL and go ahead with the trade. Is there any solution for this problem. I'm using MT5, build 2085. Tks!