Expert Advisors and Automated Trading - page 482

  Check question  (2)
If I remember correctly it is not possible to enter 4 orders for the same pair and set different profit levels (I do that in my MT4 EA) I have to place one order for the total amount and scale out by placing pending orders in the opposite direction. Correct? And to take care of a trailing SL I...
Hi I have wrote a few simple EA and have them running on a demo account. I now want to use the indicator Williams Fractals, I see the function iFractal, but note this is described as an indicator and the example uses onCalculate which is triggered by an indicator. Is there a difference when...
Hello people, I have a problem with mt4 that I can not fix (maybe it's easy) ... I'll explain in a nutshell: I can not subscribe to any "Signal" both free and fee. Basically when I get to the window that asks me to flaggare "I agree to the use of the term signals service" and enter the password of...
Hi, Is there an EA out there that will close a trade if a candle closes beyond my stop loss? Many thanks
Hi, I purchased an expert and installed it on my local machine to see how it operated.  I would now like to have it installed on my VPS but the product does not show in the "Markets" tab on my VPS.  I can see indicators I have previously purchased in there but not this particular expert. Any ideas?...
I am intrigued. First EA 1 opens position with magic 1, then EA 2 opens position with magic 2 on same symbol.Question is what is magic of this position now?Thank you.P.S. I will test this when market open and come back with answer if non has provided one.
Ist this possible on the MT5 platform?  It does not seem possible on MT4
  cloud  (2)
hello I try to use the cloud MQL5 I have no credit and the link "Get 2 credits" has disappeared how to start? Thank you for your help.
Hi, I'm having trouble with the following code: int OnInit() { OrderSelect(0); Print(OrderGetString(ORDER_SYMBOL)); Print(OrderGetString(ORDER_COMMENT)); Print(OrderGetInteger(ORDER_MAGIC)); //--- return(INIT_SUCCEEDED); } The Prints return empty when there are Pending Orders placed...
Hello, I'm inside the forex world for several years, I've always traded succesfully without an EA. I would like to build an 'easy' EA, who trades automatically on the basis of a Moving average. Shortly, when the movingaverage is going down, you go short, you close the trade when the moving...
  Market-EA on VPS  (2)
Hi all, maybe you can help me. Market-EA´s are binded on the PC to protect the developers work. Is that right? If I buy an EA and work on my desktop-computer, am I able to put it on a VPS  later on? Or do i have to buy another copy? Thanks for your help
Hi Friends, For MT4 EA I have get passed out of many errors but there is sill many warning message with "expression on global scope not allowed. " How can I deal with this. Will this warning message affect my EA. Thanks kchandek
Hi, I have tried to download a demo of MA from market but it writes this all the time. 2013.11.07 12:59:14 MQL5 Market failed to load list of products Can anybody give me an advice? Thank you in advance.
  MA SYSTEM  (2)
I am working on moving average and i need any one who could help me with the MT4 platform language in other form to be able to programme the platform to respond to my projected reaction using moving average indicator ,for instance ,using MA5 and MA100 for a reaction on the platform whenever there is
Loading Metaeditor to make a few changes to an existing MT5/MQL5 EA, hit compile and what previously compiled fine, now gives me #include errors. It is now looking in the \MQL4\Include\xxx path -- MQL4? There is an MQL5 directory, but never a MQL4 one. Bug in the new IDE? (this is 3rd october...
I understand that the "hedging" techique in its simple form is not allowed in the MT5 platform due to regulatory restrictions in the US. That does not worry me, I do not use that technique. Are there other restrictions that are also implemented into the platform.
Hi Friends, I have one MT4 EA I have done changes in the EA under metaeditor of MQL5 saved it. If I use metaeditor of MQL5 I do not see any errors but If I use MT4 metaeditor it is giving 100's of error. Do anybody come accross this issue & will my EA work on MT4 without any issues....
Dear all Forex traders I am familiar with MQL4programming language. I have been written several expert advisors (EA) onsingle currency pair such as EURUSD. But I want to write anEA that includes different currency pairs such as EURUSD and GBPUSD now. It isnecessary to mention that based on my...
HI THERE CODE DEVELOPERS. I NEED YOUR HELP, I HAVE A NEW TRADING IDEA AND I WANT TO TEST IT ON A SIGNIFICANT TIME PERIOD. I NEED AN E.A. THAT: *1* AT A GIVEN HOUR OF THE DAY I.E. OPENS A BUY (MARKET ORDER) AND A SELL (STOP ORDER) SOME POINTS ( 50 PTS. 0.0050-FOR EURO) AWAY FROM THE...
im looking for an ea or manual signal that will generate a consistent around 300% a month? please reply thanks
Hi, I have this bit of code from MQL docs which I want to use in my EA to display these details over the chart for the moment, I want to use them later on but I get the amiguous call error, any idea on how this can be fixed? Thank you //Get and show account detailsdouble AccountInfoDouble(...
How to put an expert on VPS? I want to put my expert on a VPS(Virtual Private server). Who could help from the base?
When registering for the cloud testing, you get a bonus of 2.00. I activated the cloud on a server and a couple of PCs. Only during ONE day I earned a very small amount of points. Now my credit is down to 0.51 and I get the message "can't connect to MQL5 Cloud, not enough money". In theory,...
Hello guys, I have a question... the following is my code: void onStart(){MqlRates rates[]; int copied=CopyRates(Symbol(),PERIOD_M1,0,100,rates); if(copied<=0) Print("Error copying price data ",GetLastError()); else Print("Copied ",ArraySize(rates),"...
  Debugging issues  (6)
Hi guys I'm having trouble with getting my program to debug. I am still new to coding and have been following a Step-By-Step guide to study. I am at the point of debugging now and even though my meta editor is attached to a feed in the options, the run for the debug is blanked out. It doesn't...
I have a script that writes the values of technical indicators per candle, but I do not know how to get the script to run on a specified date range. If I attach the script to a chart it counts backwards the number of candles from the current date which is a limitation because I want to get the data...
Hi ;) First let me introduce my idea a bit : I am trying to design a trading automat based on fondamentals news. So the trading decision is not the MQL work, this is the role of an external engine actualy hosted on an dedicated server. I used Mql for execution orders. On the paper this system look...
Hi, As many of you would be aware, you need to carry out a manual data check and/or re-synchronisation of your pricing data before doing a CopyOpen(), CopyHigh() etc if you want to ensure you have the most recent data available. However, what's the situation with accessing Indicator data using...
Hi , I want to apply ALFA.mql EA on GBPUSD M1 chart , BRAVO.mql EA on GBPUSD M30 chart , and no EA on the GBPUSD M5, M15, etc... Can anyone explain me how can I do that? TIA
Hello everybody So the question is: What happens when a new tick arrives while ontick event is still processing previous tick?? Is this tick event discarded??? or is there a tick queue to be processed so all ticks are definitely processed???? Thanks in advance Juan