MQL4 and MetaTrader 4 - page 632

[Deleted]
Hello, Please I have faced a strange situation that is when when I load my expert then I enable the auto trading button, the expert doesn't open any orders, but when I enable the auto trading button first the load the expert, it works fine... Is that situation is ok.. or there is some thing wrong....
i was just trying to download the user manual and its like the site crashed after i got it. thanks to google translate it would happen to be saying Server Error 403 - forbidden. Access is denied. Provided credentials are not given the right to view this directory or page.
[Deleted]
Mobile Trading Trade anywhere anytime with 5Stars-forex Mobile Tradingsolutions. The speed of today’s markets means that you need to haveaccess to your trades 24/7 from wherever you are in the world. 5StarsForex hasdeveloped a range of mobile trading solutions that cater to smartphone userswith...
Hi! I am newbie in mql4 programing , i want write equity profit locker for my EA and input in EA parameters . for example : after %10 or more equity grow , EA will not work until the end current month . please help me for this
  Check My Code  (2)
wish that my code was working in tester, it seems to be stuck in a loop. im new to using a while loop in the start/on tick and was hoping for anyone familiar with this ..the while loop is for waiting up to 15 seconds for spread ( with each time frame ) to be normal. so basically there is no way in...
[Deleted]
Hi guys! As a newbie programmer, I'm having a hard time understanding how does the Babon Slope indicator calculates it's values. Any help would be appreciated really, but I am most interested in the exact steps of the calculation. Thank you in advance. Balazs
please i want you to help me on how to copy trade on mql5.com with same lot with the signal provider .... irrespective of my fund are higher or lower. for example if the signal provider open position 0.01 ==== mine will be 0.01 or 0.1 if the signal provider open with 0.03 ===== mine will be 0.03 or
is it possible to get/peek the economics news time in both mql4/5 ? if yes, how to use it? 
[Deleted]
is there a code that would allow me to remove the program or deinit the program if there is an error? example: if( GetLastError() != 0) { Alert("error"); exit EA, de initialize } Also, the error would come from the program trying to put a buystop/sellstop at a point that isnt allowed to put an
[Deleted]
DEAR SIR I AM USING META TRADER 4 BUILD 840 , I WANT TO IMPORT EXTERNAL SYMBOL,  I HAD FOLLOWED THE FOLLOWING PROCEDURE A. I HAD OPENED THE MT4 , TOOLS , HISTORICAL CENTER, EXPORT ONE OF THE SYMBOLS AS TEXT FILE AND THE RENAME THE SAME SYMBOL WITH DIFFERENT NAME AND TRY TO IMPORT THE SAME SYMBOL ,...
[Deleted]
Hi, I have been back testing my EA for a while now and would like to trade it live.    However, when I run it live, 3 different pairs for example,  I realised that that the orderstotal() was interfering with one another. if(OrdersTotal()==0)     {//---  Buystop and Sellstop     int...
[Deleted]
  Web Trding  (1)
Web Trading Our online web trading platforms, Visual Trading Machine, allows you to trade from any computer wherever you are in the world. Sophisticated tools and unique features make Visual Trading Machine one of the most sophisticated online-based forex platforms on the market. Real-time rates...
[Deleted]
  Code Problem  (2)
Hi, I have a problem: my program during the test send only one order even if looking at the charts it could do many more order. Please can you help me?
I am trying to run a test on the MT4 strategy tester on the 5m chart. I want conditions to be met on both the 5m and 30m charts. It appears to ignore the 30m chart condition so the condition is never true? // Input variablesinput int KPeriod = 14;input int DPeriod = 3;input int Slowing = 3;input...
Hi Guys...  I've created an indicator but I want it to be very un-obtusive.... I use a black background on my chrarts and I have set the 2 indicators to clrMaroon and clrDarkGreen... but they are still too visible for me... How do I increase the "black" level of the indis... Thanx... 
I have found the function ChartTimePriceToXY() to be quite useful but exploring in more detail there may be some discrepancies. Pick a candle using Time[] then use the code below to show the position of the candle as a percentage down the chart calculated using Time/Price & Pixels. I would have...
I have a certain condition in code where I define the BuyPrice total = OrdersTotal();if ( Bid >= BuyPrice1 && total <1)                                           // Buy Order 1   OrderSend (Symbol(),OP_BUYLIMIT,Lots,BuyPrice1,0,0,0,NULL,0,clrNONE);      if (Bid >= BuyPrice2 &&...
[Deleted]
  Dax problem MT4  (3)
Hello everyone. I have MT4 840 build and I have following problem  with DAX index, it shows me in one click trading false vallues 1414.3 for sell and 1415.3 for buy (screenshot is old) instead of 11414.3 for sell and for buy 11415.3.  Number 1 in the beginning is missing. I have 840 and Win XP. Does...
Hello!   I am totally new with MQL programmation and I need a simple operation to be executed I'd like to buy the open_price of the next hour whatever this price is   Please can someone help me write the EA ?    
MT4 always cover or remove the history data I downloaded and exported once connected to broker server.  . Does it mean MQ doesn't want to support back test? . Does it mean MQ doesn't want users to do back test? . Does it mean MQ will waive the function of back test gradually?  . Otherwise why does...
[Deleted]
Hi all, I wanted to enquire about the MT4 platform. My broker does not have access to mobile trading on MT4 but does so for the usual desktop version. I wanted to know, are you able to download the platform and use this on a tablet? or can this only work for laptop's and computers?
[Deleted]
Trading forex ,ForexCurrency Trading  Our Affiliate Program offers you highly lucrative remunerations for referring clients to 5StarsForex Are You: • A website or forum owner? • An expert advisor (EA) developers or a signal provider? • An education provider? • An online marketing agent?If you...
Hi,  I'm looking for some strategies on how to debug. I can't run an EA on a simulator because MT4 doesn't have one. Print function doesn't work in the strategy backtester and finally the Comment function only show one statement at a time. Any tips?   Thanks 
Which platform is better. MT4 or MT5.  Any comments?
I am developing a ForexStrength indicator. This indicator shows the strength of 28 Forex pairs according to market conditions.  Everything is ok with the indicator if I draw the outputs to the chart. But now I want the outputs to be written to Custom Indicator Buffers (thanks new MT4 I can do it, in...
[Deleted]
Hi, I wonder if someone has encountered the same issue I'm currently battling (see topic). Should not this code suffice as to delete orders pending? Have not tried it LIVE, I'm talking back test. Still, I believe this code should do it; Ticket = OrderSend(Symbol(), OP_BUYLIMIT, 1, Ask - (Point * 50)...
Hi, i made an API written it in some classes. How can i compile/hide them? the export function doesn't work for it if i try it using as lib. Is there any simple way or do i have to include them into a new lib and hide them with new functions wich can be exported? Thanks for the answers.
Hi,   I am having some trouble trying to identify the highest high for the last x number of candles. I already have a for loop running to identify other Highs and Lows. - The for loop has to work backwards from eg 10 candles to the live candle.  Any help is greatly appreciated   Thanks in advance 
[Deleted]
Crashes upon launch.... 
I downloaded 2-year data and it seems ok for back testing. However, when I opened the chart after testing, the beginning time wasn't the one my downloading starts, but almost 1 year later. I'm confused what cause this issue and how to fix? I downloaded and exported to MT4 again and the issue is