MQL4 and MetaTrader 4 - page 382

Hello, This EA is buying when the HMA indicator is turning green and selling when its turning red. But then it needs to wait till the ROC is getting above 0 for a buy and below 0 for a sell. Right now its only opening a trade if it happens at the same time. Mostly the hma turns green first and then...
How do you guys get around spread and slippage issues?
  mt4  (2)
I'm trying to download metatrader4 but every time I try so, I end up downloading metatrader5 instead. Please help me with some solutions. I wanted to start trading by the end of this month but this is stopping since I have been reading about mql4 and yet I have failed to get MT4. I will be glad to...
  hi  (1)
Nobody here?
hi, i need some help in coding an ea for testing. open buy when show up arrow and close buy and open sell when show down arrow. thank btw
Hello everyone, I have a problem with a function I already used in another code and it was working. In this expert, even inserting it does not change anything and does not seem to work, I mean the breakeven....
Hi, I just want to write some data to a csv. But I cannot see my mistake I get error 5004 over and over again. It creates the file, but it's size=0. The Timer is set to 5 sec. the "int start()"-function doesn't help either. Thanks in advance void OnTimer(){if (RunEA && IsTradeAllowed()) {   int...
Good morning everyone, I wrote an expert Advisor in mql4 format which open position at certain time of the day, it calculate number of lots, take profit and stop loss. Now I want to change it because it doesn’t work very well and I want that it open position when the candlestick start (in the...
Hello everyone, I was asked by a friend of mine to attempt a code to show similarities with matching pairs. I found a code online which sort of did it, but after I modified the code isn't working correctly. I tried to track it down again, but I was not successful in finding the code again. Q:  How...
hello there,  I am new to MQL4 and i am trying to draw a horizontal line (ray) on OHLC of a candlestick. So far, I am unable to do so. I tried ObjectCreate but no luck. Please help me out. 
  alert  (1)
hello there I want to set an alert on my mt4 platform but I want it on the over bought or oversold indicator . can some one help me
Hi, I have some problems with my strategy tester.. I don't know why every time I run the tester only few day is ccalculated. For example: I set the usage from 01/01/2011 to 31/12/2011 the tester calculate only 01/01/11-05/01/11 or: I set usage from 01/01/2012 to 31/03/2012 the tester calculate only...
Hi, When saving a detailed statement from your MT4 account history, I see that there is a small section in the working orders that displays comments from an automated system, in the last column in the working orders section (as shown from account history). These comments would be extremely useful...
If Im using an iCustom function and my indicator has an output I want to use in my EA, can I?
Hi guys... Can anyone tell me how to insert a small "1/2" symbol into my Text....  string HalfHourSymbol = "?";string NFP_HeadsUp = "NFP Starts in 1"+HalfHourSymbol+" hours"; ...I'm struggling to work this small thing out... Thanx
  comment not show  (9)
Hi at all, i'm experimenting a very strange problem, i re-used some code from my old EA but the comment inserted in the OrderSend doesn't appear in Terminal even if the field Comment is selected. The strage thing is that, the same instruction in another EA works. Below the two statements: 1....
Hi I have 2 questions. 1-How can I check the last order ,closed with takeprofit or closed manually ? if closed with take profit, for example do something . 2-for every new order , ea check the other open orders ,if difference between ASK price and any order open price is higher than certain amount ,...
Hello, I'm testing a lot of EA in this period and often I observed that SL/TP values are not respected if setted in OrderSend function. Maybe I have to set a SL of 20 pips but, when order will be created, often it differs from 20 pips. I think that this happens because I check multiple time to...
Hello dear programmers, I am building an EA based on my strategy but as I am still learning how to code properly I ran into some troubles. Would really appreciate your help! So basically lets say that my strategy generates  SELL signals at the price of X and then Y and then Z and so on. How can I...
Hi Guys, I am trying to back test an EA . My friend is reporting success with this EA and I wanted to check it out before dropping onto a chart on my Live account. It will not run on anything other than a Tallinex Live account. I set the Tester to run from 1st Jan 2017 to 25th August 2017 but it...
Hi everyone, I'm a beginner and I'm trying to learn. I have a problem, in this practice expert, I insert the stop loss exactly on the minimum of the candle and I would like the RR ratio to be 1 to 1. I'm trying to calculate the difference in pips between the maximum and the minimum and then add it...
Hi all, Wondering if anyone could tell me why I'm not being able to TRADE anything at all, there's no trade button available. I'm fairly new to all of this so may be something obvious! Many thanks.
  MT4 platform working slowly  (19   1 2)
Hi I don't know, if this has already been asked here, but I couldn't find it anywhere. My Metatrader4 platform lags big time and I don't know, what to do with it. I tried to google it, but the solutions I found didn't work in my case. I can't see the data in real time, as it refreshes only every few
Hello Just purchased an indicator but after logging in via metatrader and clicking the install button nothing happens, any idea what the problem could be kind regards Andrew
Hi all, I would like to extract the value lines from the attached indicator (using iCustom function in my expert) but I'm not able because I seem there are no buffers. Could you help me? Thank you!
  TMA Bands  (1)
I was wondering if anyone (Meta Trader or any programmer) can help me here with an issue that I have. I have an indicator called Extreme TMA Bands that I use in my EA logic, which is pretty much like Bollinger bands, that has an Upper, Middle, and lower Bands, and you can set the period that you...
this code produces the file shown: int start()  {   int handle = FileOpen(Symbol()+"_logfile.csv",FILE_CSV|FILE_READ|FILE_WRITE,','); if(handle>0)  {   //write file header   FileSeek(handle,0,SEEK_SET);   FileWrite(handle,"Symbol","idiot","idiot1","idiot2","idiot3");   for(int i = 1;i<10;i++)   {...
Hi, I am stuck for a week on this problem: I have the same EA (can easily give it different magic nr's) on like 7 pairs. I do not want the ea open a position when there is already a position open on that particulair pair.   I searched a lot on orderstotal, bools, magicnr's et  etc. Finally I get...