MQL4 and MetaTrader 4 - page 487

Hi, I have 3-level- semaphore indicator . Refer the attached mq4 source file. Sometimes when current signal appears, previous signal near to that current signal disappears automatically. Can anyone please suggest any changes in code so that the signals shouldn't vanishes automatically
Hi, how are you. I have a problem with a code that, under certain conditions, must determine if it is favorable to open a purchase or sale position, but only send the notice. I try to put an Alert ("There is an opportunity to buy or sell according to the case"). But the alert appears every time the
Hello, I want to close all positions at a defined time. E.g. at 23.00 I want to close all positions.  What code you recommend.
-
  unable sending mail  (23   1 2 3)
Hello, I have just created a gmx mail account for sending mails with metatrader but the simple test does not work. I have configured like on the attached picture, where is the problem? Maybe I have to use my internet access provider like in Outlook, isn't it?
I have read that also others have problems with sending mails with the integrated mail function. I am using my metatrader build 625 with my gmx mail account and getting the following errror message: "Mail: 550 Insufficient security or privacy level" It is necessary to turn on Encryption STARTTLS or...
Hi, I've been working with email to sms alerts in my EA using the SendMail function. I currently have my email set up through GMX which forwards all incoming messages from MT4 to my cell phone. This all works great about 90% of the time. The other 10% of the time I get delivery delays from my email...
Hi everybody, I have some problems with email alert in MT4.  I guess the config is ok but it doesn´t work. The Mt4 is 950 Build
Hi all Is there any way to remove the news candles from the data history ? most of back tests fails due to these candles
Hello MQL4 community, Does anyone know of a way to resolve http POST webrequests in the form of "https://username:password@site.com/urlhandlers..."? Apparently the MQL4 webrequest function does not accept URLs in that form (I've allowed permutations of the URL already in the options setting, before...
Is there an efficient way to exit loop? I can't relay on ticks, i have to check database every second or 2, tick sometimes have long pause. When i do infinite loop, MT4 is difficult to shut down. Can anyone help
It seems as if the values of High[0], Low[0], and Close[0] gets overwritten with the value of Open[0] when running this simple code from within Strategy Tester. For Instance, take this Init code: int OnInit() {   for(int i=0; i<2; i++){      printf("Bar[%d]=%f|%f|%f|%f",i, Open[i], High[i], Low[i],...
I am trying to create a string array based on an ENUM that I created for a drop down list. The enum and drop down list work fine.  When I create an Array based on the enum selected that's when I run into problems. enum ENUM_BASKET {      USD=0,    //USD      EUR=1,    //EUR      GBP=2...
Now, I want a numeric data of each second from the Matatrader4. Please teach me how to do that.
Hi, I am new to this, i tried this EA but this EA does not open anymore positions if there is a position already opened, even if the open position rules are being met. btw i kinda wana do the SCALPING. so can anyone please help me out here?
Hi, I have been trying to place a trade from my Expert Advisor but so far I have not been able to succeed. My broker is Go Markets. Here are the codes I tried: int order=OrderSend(Symbol(), OP_SELL, 10, Ask, 100, 0, 0, "BO exp:300", "543254325423", 0, clrGreen); int order=OrderSend(Symbol()...
Hi all, It looks like the Close and Open arrays starts with a 1000 elements of history in it by default. I discovered this while printing out ArraySize() during testing.  Is there a way to make it start bigger? Thanks!
Hi guys, my question is simple, while creating a horizontal line I'd like to make it possible for the user to move it in case my algorith miscalculates it's placing. For example when you manually create a horizontal line you can drag it up and down. But when you programmatically create it you cannot...
Hello Why in a multi-pair EA this: take=NormalizeDouble(MarketInfo(pairmajeur,MODE_ASK)+Take*MarketInfo(pairmajeur,MODE_POINT),MarketInfo(pairmajeur,MODE_DIGITS)); Gives me an error ""possible loss of data due to type conversion Malibu.mq4 426 111". (111= MarketInfo(pairmajeur,MODE_DIGITS));) with:...
Hello, I need help how to change a source code. I have Cent acount in MT4 Indicator show - 870 $ but correct valuet should by - 0,870 $. I will be grateful for your help. Mark
Hello Folks, I recently got this indicator which is pretty accurate. However, I am having trouble with the email alert. Do you know how I can modify it so that it alerts me when it changes trend? Thanks!
i declared something like "B1=Bid", so am wondering when the variable, B1 is updated. Is it every time i load the EA, or every time a new tick(price) comes in.
Hi everyone, I am seeking help to write the correct logic that can adjust the entry price for a trade, which is the nearest 25 level below each daily bar candle. For example, if the price of GBPUSD closed at 1.2966, then the entry price should be 1.2950. If the close was 1.2986, then the nearest 25
  EA coding  (1)
hello to all i have an indicator based on wd gann formulas, can any one code an ea with martingale system, close all trades on opposite signal, if once a TP hit than no trade until next signal appear
Hello everyone, I don't really understand order 1 and order 3 error messages. void CloseTicket() { // 0= order 61204533 /NZDJPY / Market is closed // 1= order 61204413 /oil-oct17 / Invalid price // 2= order 61202214 /USDHKD / Market is closed // 3= order 61176067 /usdx-sep17 / Invalid
I'd like to learn more about open orders -- getting information and modifying. Moving the stop to breakeven should be a good project. I found plenty of discussion on the subject but no finished code illustrating the details of how it's really done. Here's a few references if anyone wants to see...
  Convert mq4 to mq5  (14   1 2)
Is there a functioning program to convert a mq4-EA to mq5-EA? Thanks! traderdoc
Hi friends, i have a indicator. plz, add sound alert and email alert into indicator that create sound alert when change color from red to green/ green to red. I've also attached indicator here.  
Hi I have got a code but it doesn't seem to work properly. The EA opens 1 buy and 1 Sell trade of the same pair. I want the code to calculate the total profit of the two orders and return the result. I have got this function. double Money() {   double sum_profits = 0;      int i, iOrders =...
Hi, I tried to install MT4 on Linux with WINE: wine mt4setup.exe It asks for Server name, Login and password before installing MT4. I have seen on youtube people are showing installation without this information. If I do not have any broker account, how do I install MT4? Thanks.
  minimal stoploss  (3)
hello How can Expert  determine the minimum stop loss value ?