MQL4 and MetaTrader 4 - page 406

Hello, One of the indicators I am using in my EA is printing text on the chart, is it possible to automatically remove such text ? I do not have the mq4 file for that indicator. Any help is appreciated! regards, salexes
I am new to coding MQL4 and having a problem with something...  I want to assign a variable before OnTick. so I only want to be in 1 trade at a time. something like this. bool CanTrade = true;   if(Cantrade==true)      { "buy or sell depending on conditions..." static bool CanTrade = false;...
I noticed some strange differences pips profit betwen terminal and mql4 math. If we chose in terminal the profit in points and we have some int RealPipsLong = (OrderOpenPrice() - Bid)/Point; //for Longint RealPipsShort = (Ask - OrderOpenPrice())/Point; //for ShortComment(RealPipsLong + " " +...
  Range Bar Chart on MT4  (566   1 2 3 4 5 ... 56 57)
Hi MT4 programmer, I'm currently trading Woodie CCI system - it provides a TOTALLY free consultation live in order to help traders, Relocate. It uses range bar chart with Woodie CCI indicator. The system is available for a lot of platform including Tradestation, TradeNavigator, NinjaTrader etc, The...
Hi. After last update build 1147 of MT4 , I want to make some modification to my EA and as you see bellow everything is OK after compiling the EA but when I try to drag it to the chart I got this message "the EA is not expert and cannot be executed" Could you help me to know what happen with the...
  not working mt4  (6)
A few days ago I installed mt4 and chose the demo account. The software worked well until today, but it does not update, and the latest update is December 28th. I removed the software and installed it and even created another account, but still mt4 did not work. where is the problem from?
  Order processing  (3)
I would like to know how MT4 terminal order processing works. As far as I know MT4 terminal can process up to 8 orders at 1 time (open, close, edit order) and what happens if 50 robots are opened in the terminal and they want to do something at the same time? are the first 8 orders processed and...
  mql storage  (2)
i finally updated to windows 10, but now when i tried to update files from storage nothing happens, it is like blank. anyone else have this problem?
Currently the MT4 tester speed slider doesn't work correctly, it is very slow until the value before last value?(31), at final value(32) it is very fast, Is there a way to get a speed in between these 2 values? Thanks in advance.. 
Hello everyone, To start with I disconnected my internet connection from my computer, then started the test. After I got the result below I went back to the reference manual to see if I had interrupted something in the explanation. "It returns true if connection to the server was successfully...
Hi, my MT4 is frozen after opening. I believe my account is logged in because the number is displayed but my balance is shown as zero. I can verify with my broker that my balance is not zero. I can't even use a menu item - they are not highlighted when I mouseover them. Additionally, toolbar items
I tested my code last week, bellow first picture.    And today I tested same timeframe, same period, but result has changed. I didn't change my source code. Why this happen?   
Hello everybody, I am looking to open a demo netting account at MT4 and I can't seem to find a broker who can provide me with one. I haven't found anything related to netting accounts in MT4. Does MT4 only support hedging accounts
My strategy worked fine then the results changed. I used the same EA and timeframe and its efficiency was still at 90% how could this be?
i used to use my bolingers bands but now is not supported any more , i tryed severals brokers and nothing works please some one can give me support
  Only buy orders  (4)
I do not know why just opening the purchase orders. Can someone help me?//+------------------------------------------------------------------+//|                                                      OneShot.mq4 |//|                                                 Tarcísio Allyson...
//-- loop total horizontal lines on main chart for(int i=ObjectsTotal(0,-1,OBJ_HLINE); i>=0; i--) // this should begin a count on horizontal lines beginning with 0 if there are no horizontal lines ?? and this means that if there were no horizontal lines that it would process the for loop with no...
When the phone has screen off for some time, the notifications from the MT4 app do not come through until I switch on the phone screen. MT4 is already set as power saving exceptions but still problem. Phone is a Sony Xperia XA2 on latest version in UK. I have also switched wireless off and this...
Hello everyone, I have had this problem before and I still do not understand its meaning. The code below causes it sometimes, I still am clueless as why this happening again. To me the statement is double dutch.. there isn't an error, so how can a result be unknown?         bool...
Hi, I want to write a script to limit the money at risk per trade. I want to limit my risk at n% of my equity. I found some scripts in the forum but still have some questions.. I found: lot = NormalizeDouble(AccountFreeMargin() * Risk * 0.01 * MarketInfo(Symbol(), MODE_TICKSIZE), 2);//last 2...
Hi,   I've install mt4 mobile on my android and activate PUSH notifications on my PC. MT4 informs no errors on sending a notification, but nothing comes to my mobile. I've check on the app details and the "Accept notifications" options is active.   Anybody knows about issues on android versions ? 
MetaQuotes Software Corp. was founded on the 27th of November 2000. Its only activitywas and still is development of software for financial markets. The company hasachieved much within the last 7 years. We have developed 4 trading platforms, 4mobile terminals, created 4 development environments for...
Coded up an Ea; however, I'm needing the trail profit and trail stop to function on open bar.   Is this possible? Any code ideas would be appreciated . Thanks
[Deleted]
Hi guys, I was wondering, if any of you have ever used strategy testing / optimizing forexperts written in mql4, using some sort of parallel computation grid solution? I was thinking about using the free CPU time of my servers to aid me in strategytesting, and therefore I would build a computation...
hi guys. i have this type of error in this function, why happening? void tpsl (){   double tp = 0;   double sl= 0;   for(int i=0;i< OrdersTotal () ; i++)     {      if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES))        {            if(OrderType()== OP_BUY)            {                 sl =...
Any way to get notification of alert on your phone? similar to that you get for each executed deals. If not then pls suggest best apps for this purpose... i have tried apps like netdania and tradeinterceptor..... but they are all like too much work to set each alert....i need something as easy as...
I'm getting this error: 2009.06.23 14:27:31 TestGenerator: deficient data ' GBPJPY240 ' (77 rate records) The problem is that when I open the history center, it lists 2.9 million records for GBPJPY1 and 3,670 for GBPJPY240. I ran the period converter script but continue receiving this error. What
Hello guys. I am trying to import data to rebuild from M1 timeframe all the other timeframes in order to backtest with a 90% model quality. Can somebody help or post a resource where all the details of the process are explained
I am new to trading and I am having trouble setting up my terminal.  I need some information on how to use it.  I hope someone can point me in the right direction.
[Deleted]
How do you detect if chart window is active? If active chart window is maximized, one may think that all other background windows are maximized too, but actually they become windowed, and their width/height is changed. So if anyone using calculating each tick to place object in center, then, when...