MQL4 and MetaTrader 4 - page 407

Hi, I am trying to read from history file using an EA, but I encountered a problem with a certain broker, in which the symbol names end in [..r], i.e: EURUSD..r When I try to use the FileOpenHistory function with this filename, I receive an error 4101 - Wrong File Name. On any other broker with...
int liveAccountNumber = 535621;int liveAccountNumber2 = 737213;if(( AccountNumber() liveAccountNumber) && ( AccountNumber() liveAccountNumber2)) Hello, I am trying to do in this way but it is not working for the second or multiple account number. I want to get a code that will allow my EA only for...
Hello, this should be a trivial, but unfortunately I can not find it anywhere.I would like to obtain a MovingAverage of some indicator, for example Stoch(5,3,3). How can it by done? double stoch1 = iStochastic(Symbol(), Period(),5,3,2, MODE_SMA,0,MODE_MAIN,shift); double stochEMA1 = iMA(symbol,...
  Mandarine EAs mods  (620   1 2 3 4 5 ... 61 62)
Another Mandrine mod, this time just using regular Mandrine indicator setup, but if you choose you can filter your trades using fibs, the fibs draw on your chart automatically when Mandrine installed, they will be there whether you use them as filter or not, and if you do use them if the ma's cross...
Strategy Tester no longer works after my broker recently changed its live server from GMT-5 to GMT+2. I've been having to switch back and forth to the old GMT-5 server to test, but that server now has completely gone away, and I have no means to test my EA. Please note that I am not talking about...
Hello  I have a problem. I don't know why there occurs memory leak. I made class Ticket.mqh and TicketList.mqh(Vector) It is made for a convenient order. The destructor also work properly. But error of memory leak  occurs. I'm using two class and some objects (Label) This below of code is related...
I am currently subscribing two signals on two different accounts. But it only seems like the signal I have open om my MT4 mobile plattform is Running.  The account which I do not have open does not copy. Anyone who know what the problem might be? And how to resolve it?
When I place a limit order, my mobile phone makes the tone twice but I expected it once. Changing the town on the phone does not have any effect (tone change expected). Turning the phone of and on did not fix it. Any idea how to fix this? My MT4 terminal has the following checked. Enable Push...
I hired a MQL5 VPS and hosted a trading ac. Now I have stopped trading with that broker and removed everything from my computer. I am unable to remove the trading ac from VPS. Though I used "MOVE" option still that trade ac is seen in the VPS. I have to remove this and host another trade on the VPS....
Hey, Ive been trying to get an array working for a while and keep coming back to it after moving on too finish other things. Im simply wanting to store a fractal high/low value in it. I only need 3 stored so i can identify a change in trend so when the middle fractal is higher than the other two
Hi there, I like to know if is it possible to use C++ to create a bot in MetaTrader5 or I must learn MQL4/5? Thanks a lot!
[Deleted]
when i try to add new chart i get this:  C:\Users\?????\AppData\Roamin\MetaQuotes\Yerminal\804178f05358d0dfe1028115526a9e97\profiles\Default\chart01.chr contains an incorrect path.   anybody can help 
hello I have  a problem. If I input a value which is lower than minimum of take-profit, then I would like to show log. I think mininum of stoploss is "MarketInfo(symbol, MODE_STOPLEVEL)", but I have no idea  how can I get the minumum of take profit... could you help me? thank you in advance.
Can you change the time at the bottom of charts to my local time
Hello, I think it's too complicated for me to use properly MQLInfoInteger() - ot always return 0 for me. For example:  Print("MQLInfoInteger(MQL_CODEPAGE) on Init: ", MQLInfoInteger(MQL_CODEPAGE)); MQLSetInteger(MQL_CODEPAGE, 850); Print("MQLInfoInteger(MQL_CODEPAGE) after codepage change: ",...
Hey, I have been trying to get my head around for loops in order to store data in an array.  a = (Current>High[i+1] && Current>High[i-1]);           for(a;!a;a++)       {       High_Array[h]=Current;       }// So Current is = High[i]// int a;//double High_Array[];^^^^^^^These have all be clarified...
Hi,, I found below code , it does what I want, the problem it dumps all orders types , I just need the pending orders: I believe my problem in this line: --->       ENUM_ORDER_TYPE type=(ENUM_ORDER_TYPE) OrderType(); I need to put only below Identifiers : ORDER_TYPE_BUY ORDER_TYPE_SELL...
Newbie here,  Can anyone please tell me how to code your own alerts for RSI indicator? Thanks!
Hello everyone,I'm looking for a way to let a EA. Check what the total current profit is of all open orders.  If it's is equal to for example 20 usd that it automatically closes all the orders.  Regards, 
Hello, I am newbie in MQL4. I would like to know how I could detected that Heiken Ashi Body close above/below MA?
[Deleted]
Would you be so kind to help me about the following case?   Fibonacci retracement and the trendline functions would be very important for me on my android mt4, but I can't find it in the software.  Is there any possibibility to use it somehow on my andoid, or I have to change my new mobile to...
[Deleted]
Hi Guys, I've tried to decipher the past posts on this subject but cant get code to work. I looking for a Heiken Ashi close above/below a MA. That parts done. If its going Up I want to see two White bars IE [1] & [2], for confirmation and two Red bars for downward trend. I don't know how to code for...
How do I restrict my ea to only backrest and not trade.example like what is done by MQL when you download the from version of an ea and all you can do is to backrest and not trade the system..please how do I achieve this.
I am using a custom indicator Connor RSI that displays correctly when attached to a chart (screenshot attached), but when  call and print the return value in an EA, I only get a zero (0) value returned. Here is how my EA is calling the custom indicator double crsi;// for each new bar...
Can't figure this one out. Please help! TY!
Hi how to get the log data (journal tab) by mql code? Please help. Regard.
Hi, how do I make this EA able to make several trades but only on different symbols? I hope you understand how I mean? Thanks in advance. //+------------------------------------------------------------------+//|                                                rsi-automated.mq4...
Hi, It there a indicator that is exactly the same as setting a alert on MT4 but it has the option that when prices closes above a certain price, or when price closes below a certain price level on a particular timeframe then a alert is sent? I think this is a great option that is missing on MT4. Do...
Hello, I am trying to create persistent set of data for an array, as a test, but it doesn't work. This is the code: void OnTick(){  int multi[][3];  if (ArraySize(multi) == 0) {    Print("Array size = 0");    ArrayResize(multi,3);    multi[0][0] = 1;    multi[0][1] = 2;    multi[0][2] =...
Hello I have a question about slippage. I've tested each diffrent slippage values  about OrderSend() and OrderClose() ,but results are still same. (I tested slipage 5 and 100) what is role of slippage???  thank you in advance