MQL4 and MetaTrader 4 - page 485

I'm trying to develop an ea, so far I can understand and write this which will place orders when a new bar opens. int BarsCount = 0; int start(){ if (Bars > BarsCount){ OrderSend(Symbol(),OP_BUY,0.01,Ask,2,NULL,NULL);                                         BarsCount = Bars; }   return(0); how to...
Hello everybody, I turn to the customizable CCI indicator found on the site, which gives me the positions of the records for buying and selling, and I would like to automate my results thanks to this indicator. The only problem is that I do not have enough time to learn mql4 to create my own...
There are not MT4 / MT5 Linux versions BUT the good news is that MT4 installed and work OK on Linux Wine (Windows Emulator) Ver 1.2. I test for 7 Days MT4 on Linux Ubuntu10.4 + WINE 1.2 with EA loaded and auto Open/Close/Trailing all orders without problem. The MT4 installation on WINE worked OK...
Hi guys, I tried many times to send an email alert using either my solid email account and or a GMX new account, with all aparent port number possibilities (25, 465, 587), and nothing works. Apparently connection seems successful but login failed... I have seen several topics about that on the web...
l want to encode account number to md5 hash. How to do that? Please help. Thank you very much Regards.
Hi community. I am new to MQL4. I am currently developing an EA to operate with binary options. After a few months of work and checking the reference and forum I have come to the conclusion that there is no course of action left for me but to ask here if someone can help me solve my issue. My...
Hi, I'm currently facing a problem editing my EA. I managed to get the EA to open a new trade every single candle, using: int start() { CurrTime= Time [ 0 ]; if (CurrTime!= PrevTime) // Time has changed { OpenOrder(); PrevTime = CurrTime; // Time reset. }
The last years I was working with MQL4 and I dont want to change to MQL5. What are the plans of metatrader ? Will MQL4 be alive the next 10 years or must I learn MQL5
I have 4 labels (just a squares in wingdings) that represent the 1, 5, 15, and 60 minute time frames. I want those to change between green/red when the corresponding time frame's EMAs (doesn't matter which ones) cross up/down. I made a per-bar arrow indicator for crosses before but I'm not sure how...
  Read .csv  (1)
I heard that "multi-currency baektest" are not allowed at mt4. I'm not trying to deal with multiple currencies transaction in a single  currency. When the best indicator of the various pair is eqal to current open pair,  I want to open it. So I will open several pair However, "multi-currency...
In the ViboLevelsCreate I added the following before the return:    double          Fval[] = {0.0, 0.236, 0.386, 0.500, 0.618};    color           Fcolor[] = {clrBlue, clrRed, clrGreen, clrGreen, clrGreen};    ENUM_LINE_STYLE Fline[] = {STYLE_DASH, STYLE_DASH, STYLE_SOLID, STYLE_DASH, STYLE_DOT};...
Hi guys, I have some trouble with this script : extern double a1         =0.85; extern double amin       =1; double pos; if ((OrderProfit()*a1>=amax) && (OrderLots()*a1>=amin) && (sens==1))     {        ok=OrderSelect(0,SELECT_BY_POS);        pos=OrderLots()*(1-a1);...
Dear All, Can someone please give me some clues as to how I could retrieve the original value of SL in an open order after the SL has been moved to BE or beyond? Please note I am using MQL4 and not MQL5. Thanks in advance, Jaya
i want moving averages with Apply value First Indicator's data? In code only 7 Enum Allowed how can i get this value
I find the highest value and find the name of the pair by comparing the EMA. What's the problem with the code below? There is a warning to ‘ implicit ’ from ‘ number ’ to ‘ string ’. Is there any kind of a function that can be found out from any pair? int i; int cnt, ticket, total;     bool...
  Modify orders  (5)
I want to modify stop loss and take profit to zero in hegde any one explain please how it is possible
Hi, does anybody know what error number the mt4-server returns if an order already has been closed and an EA tries to close 'the ticket' as well? MT5 does have: 10036 TRADE_RETCODE_POSITION_CLOSED The position with the givenPOSITION_IDENTIFIER has already been closed Mt4 does not know this kind of...
Hi all, Trying to get a custom indicator to load in an EA, but keep getting . This note only shows up in the journal after I open the chart, but I know the indicator is not working during the test. The custom indicator has no problem working when attached to the chart on its own. Everything seems to...
#define KEY_LEFT           37  #define KEY_UP             38  #define KEY_RIGHT          39  #define KEY_DOWN           40  //+------------------------------------------------------------------+ //|                                                                  |...
I'm trying to build an indicator that will alert me when a candle reaches a set size across multiple currency pairs and timeframes. I managed to get it working across two timeframes on one currency pair but have since modified it (see code below). I have searched the forum and managed to get some...
Hello guys, I'm new to this group and i need a hand to fix an indicator I make binary options I'm using MQL4 and a very nice indicator I found in the site, But I have many false signals. Use Tipu MACD + indicator, and I would like to add to remove false Parabolic SAR and ADX signals. Can someone
I developed a computer program for Metatrader4 and worked with specialists to create a prototype that implements the innovative strategy.The product is further developed as a Creative Commons right, whereby the current version is issued as an applicable programming code for 15.- to interested...
  Alert Problems  (2)
Why when I use this code to sound an alert it behaves okay and sounds only when the statement is true. #property indicator_chart_window   // External Input Variables extern string SECTION_A  = "*** Arrow Color Settings ***";input string SoundFile = "alert.wav"; input bool playsound = false; // Play...
Hi there, does anyone know if theres a version of the Dynamic Breakout Box Indi with push alerts? Couldn't find it anywhere. Thanks!
I am trying to implement a function that looks back a number of candles and then finds the local minimum price and the moment in time they happen. I am not sure if I understood correctly the behavior of iLow.  So my iteration may be wrong. If I call this min_local(PERIOD_H1, local_extreme,...
Hi, Need a little help. Trying to find the code to use for the issues i have. Example So here is an example for a buy. I manage to get the rules to open order and take profit. so i'm trying to find a rules for the StopLoss. Thank You {    int err;       for(int i = 0; i < OrdersTotal(); i++)...
Hi, In my algo I just want to check if the close price crosses over or under the SMA. My code look as follow: ...  double MAkurz = iMA(NULL,0,MA_kurz,0,MODE_SMA,PRICE_CLOSE,1);......   if(NeuePeriodeBegonnen == true)     {      // Buy Signal      if(Close[0] > MAkurz && Close[1] <...
Hello !   My name is Sima and I'm new in this community!   I use <deleted> and I want to set an pop-up alert every time when a yellow dot appear in chart, like in this video .  Can anyone help me with this, please?      I uploaded it for anyone who want to try it and I hope someone will help me...
//MODIFIED VERSION //--------------------------------------- #define KEY_LEFT 37 #define KEY_UP 38 #define KEY_RIGHT 39 #define KEY_DOWN 40 //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void...