Expert Advisors and Automated Trading - page 371

Dear I have a MQL4 EA, now i am plan to convert MQL5. i did all coding. just i can't convert only below MQL4 coding for ( int i = 0 ; i < OrdersHistoryTotal (); i++) { if ( OrderSelect (i, SELECT_BY_POS , MODE_HISTORY )) { if ( OrderSymbol () == Symbol () && ( OrderType () ==
  Signal volumes  (4)
I follow a signal but the volumes of the positions that coming to me it is diferrent from those the signal appears to his history trasaction. Why is this happens
Hello everyone! For past 2 years I've been now working on a project an automated currency trader what (should) over perform a human. My project is almost finish, whats left is to code and I need help with it. Soon my internet access and over all computer access will be fairly limited and I'm kind of...
Hi Can someone explayn to my where this comes from: input double SL = 1.23400;uint mySL = 0;void OnTick(){mySL  = uint(NormalizeDouble(SL,5)/_Point);Comment( IntegerToString(mySL));  } This code with a 1.23400 prints a value 123399 >> so i miss 1 point - i can not finger out why. Wath i am  missing...
(Please help me) Change display buy/sell arrow default in the MT5 Strategy Tester. (When Close position in the MT5 Strategy Tester) Purpose: - Distinguish the difference between BUY arrow of open position and BUY arrow of close position. - Distinguish the difference between SELL arrow of open...
  error in testing  (3)
dear all ...what means this error? 2017.04.08 21:42:25.620 TestGenerator: 917 generating errors, logged 100 first error records many thanks
This is a repost, as I did first post it in the indicators section. The EA uses the PipsChartData library, which code-wise belongs to the indicator.
I'm trying to submit an EA that only operates on the M1 period, but the automatic validation always fails because it is testing on M30, H1, and Daily periods.  I even have ChartSetSymbolPeriod(0, NULL, PERIOD_M1) set to force it to run on M1 and redundant code to return in OnTick if the period is...
Hello , Is there any way to check if the output is integer or if not I want to know if this is 5 or 6 not 5.2 nor 6.7 Thank you
Hi, I have created an EA which works well for meta quotes demo account. The same EA gives error 10030, invalid filling type, when I use FxPro demo account. I tried using FOK as well as IOC, none of them work. I am using CTrade standard class library to place order. I checked with FxPro on supported...
I keep getting order filling error 10030 with FxPro. Here is my code. bool IsFillingTypeAllowed(string symbol,int fill_type)                 {                                 int filling = (int)SymbolInfoInteger(symbol,SYMBOL_FILLING_MODE);...
Hi, I have coded a basicMT5 EA which is using the CTrade class to manage trades. I am currently testingthis EA on FxPro MT5. When I open a tradeusing the ORDER_FILLING_IOC filling method, it is working fine with trade.PositionOpen. Now When I use the CTradeclass with trade.PositionClose and any of...
  Filling types  (4)
On the specification window, the filling type of a pair is designated as "all" with my broker. But, on the "new order" window, there are only two options: FOK and IOC. Can I use "return" in this case? Additionally, if available, with which function I can see the used filling type for an opened...
I trade with a certain broker using an EA and I never used to have problems. However recently my orders have been declined because of error 10030. Prior to this I used to input the order filling type as a parameter for the EA and it would work without a problem. But now even when I use...
  Choosing an EA  (6)
Dear MqL community, I am fairly new to EA trading. The problem I've encountered is to choose an EA that will suit my needs. Is there perhaps an App that can help you choose an EA ?? 
[Deleted]
  Martingale  (1)
Hello, Could anyone help me to include Martingale on my EA? Just write for me a basic Martingale code with 03 parameters: 1) Points(Pips) = EA will send order to start martingale. For example 500 poits 2) Factor = lot multiplier, if a trade was loss the next trade lot size will be lotsMultiplier
I'm clearly missing something because the timer is not beating appropriately for me in the ST. Here's my test program: //+------------------------------------------------------------------+//|                                                         test.mq5 |//|                        Copyright 2017...
Example: #include <Arrays\ArrayInt.mqh>void OnStart(){   int         arr1[];   CArrayInt   arr2;   int         nElements = 100;      ArrayResize(arr1,nElements);   arr2.Resize(nElements);      Print("Dynamic Array1 has ",ArraySize(arr1)," elements");   Print("Object Array2 has ",arr2.Total(),"...
[Deleted]
Hello , 1- If there's an EA with multiple time frames , Does it make any difference which time frame I attached it to ? 2- Something very strange happens with this EA , it depend on 3 conditions and every condition from specific time frame , it's quite strict in backtesting but in real it always has...
hi guys can anyone please add martiangle feature in Forex Real Profit EA? martiangle = true or false option,just want to see the results with martiangle Thanks << decompiled code removed by moderator >>
So I'm looking for a way to download my daily trades in pairs - Enter trade; Exit trade.  I only have 1 Entry and one Exit per trade. Looping through the deals works unless the entry and exit times are crossing. When they are, it's problematic.   I know there must be a relatively easy solution, but...
Hi everybody, How much have you made with yours EA on backtesting?  Very different to real execution? Thanks for your responses.
Hello, I would like to calculate yesterday and the day before yesterday dates. I use the below code for that. Yesterday (d_tarih) works well however the day before yesterday (e_tarih) also gives the same value. Is there a way to calculate yesterday and the day before yesterday more smartly and...
Guys, do you know the behavior of MT? let's say, for example, in my library file, I have a function, which makes something calculation, lets say: double SomethingCounter=0; double MyFun1(bool condition){     if (condition) { SomethingCounter++;     return SomethingCounter; } I include that library...
I want to control my EA's from an external source so I don't need to log into my VPS. These variables are in the EA as an 'extern', so they are in the set file. Should be nice that the EA will read this variables from a Google Docs Excel sheet, so I can access them everywhere I want. Does anybody...
[Deleted]
  Modify order history in MT5?  (16   1 2)
Is it possible to modify the orders history in MT5? I want to change the comments in orders that have been filled Thanks
This is very frustrating. Changed over from FXCM and now the MetaTrader4 platform won't make trades. Only works in the Demo account. Expert Advisor settings are all the same. What's going on here??  Their symbols end in pro. Any problem here?
I am trying to run an EA from a tutorial, but I keep getting errorcode 4753 I tried with a demo account from a broker and also a standard mt5 demo account... Please help thanks
hello, order menu of the MT5 that my broker provided me (I believe it is netting account) doesn't have options to choose the pending order types of : Stop Buy, Stop Sell, Stop Limit Buy, Stop Limit Sell, Stop Loss and Take Profit. only  is it possible to enter those order types within an expert...
Halo guys, I am newly learning coding and currently, I am making an EA where I wanted to use this scroll box with boolean idea for different EA strategy. I'm trying to do this in this way but it giving me some warning in compiler and its not appearing with a scroll box.Can anyone please provide me...