MQL4 and MetaTrader 4 - page 774

I do not want to update to this 600 build. I am currently sitting on build 509. Would be massively grateful if someone can help???
[Deleted]
Hi there, In my EA, i look for some signals based in external indicators i call with "iCustoms". The issue is that i call like 50 times the indicator and although they have some different settings, there is maybe 10 unique iCustoms. So my idea to speed it up would be to first store the 10 iCustoms...
Hello external variable like bool if i selected manually to one of 2 cases and from program inside i want to reset it as if i remove the EA and attach it again on chart external bool Run= true ; int start() { if (!Run) { Run= true ; } return ( 0 ); } That is example if i click on Run on
Hi Experts! I would like to get a little help. There is an EA, which only begins to work when there is enough bars available. A newly installed MT4 contains only a few candles, and so EA does not work. Are there some programmatic solution that EA downloads the minimum required number of candles,...
Hi. Can I get the duration for an operation? I can get the duration in minutes when I close a order that show how many minutes this order remained opened. thanks
Hi, I just bought a new computer and have to start from zero. I try to put new indicator on mt4, do all the steps correctly, but when I open the aplication of MT4 those indicators doesn`t appears. I configer it the same way as I used to do but... nothing. I copy them correctly in "experts" -...
Regardless of what time frame I'm running an EA on I want to be able to see indicators with different time frames (2,3,4,10,20,etc). The documentation seems to think I just want to view a value while on attached to non standard time frame. I want to use the value of a different time frame's
[Deleted]
Hi, Any coding to read windows registry key and compare it?
[Deleted]
Ok, I've been stuck on this problem for just over a week now! It's a very simple bit of code:      C_time=Time[0];       C_time1=(C_time-(240*60)); // time 4hours ago.     BS1=iBarShift(NULL,PERIOD_H4,C_time1,false);   Line1[0]=iMACD(NULL,PERIOD_H4,10,17,6,PRICE_CLOSE,MODE_MAIN,0);...
Hi everyone, I am trading using the attached indicator, when a sell signal is triggered I buy, and vice versa. It works strangely enough. I would like to surn this indicator into an EA, would someone be able to help me adjust the code, instead of printing the signal and setting of an alarm I would...
How is this calculated? I have got this error for 2 Buy-Stop and 3 Sell-Stop-Orders. The Stop-Orders needs: entry, SL, and TP. A valid SL must be 'bigger' than the StopLevel but what is the counter-value for SL - let's say Buy-Stop: I calculate the Entry like e.g. Ask + 6 PIP 1) StopLevel <= Entry -...
[Deleted]
From the post "http://www.forexfactory.com/showthread.php?t=125117", I was inspired with the idea to use namepipe to communicate with Excel. However, when I run the following script in MT4, I always receive an alert "CreateNamedPipe failed". What did I do wrong?...
I want to be sure I understand how MT4 handles the forex servers. I’ve been working with the assumption that there are market data servers which tick the EA and a broker server which I need to query separately for account information. I started cleaning up an EA to stop it from checking...
Is this possible to use timeframe 3m,10m for EA, which is not available in chart?
Why MT4(build 625) hang-up? === Step === (1) create a new chart (2) drag and drop Expert Advisor ( testEA ) onto the chart (3) repeat key press ( key is 'j' or 'k' ) (4) MT4 hang-up << text code (Expert Advisor) -- testEA.mq4 >> int OnInit() {   return(INIT_SUCCEEDED);}void OnDeinit(const int...
Can someone explain to me what cross arbitrage is in great detail? I also appreciate links/refference. Thankx experts.
934 does not work for me because typing delay. I would like to go back to 933. Is there a way to do it?
If use an indicator (custom or not) in my EA, when is that indicator updated? Is it updated on every tick or only when it is called from the EA?
[Deleted]
Hi, my name is Alex and I am trying to develop an expert advisor to profitably trade the news. The first question that I need to ask is: what will happen when ticks are really fast (let's say 5 ticks in one second) . What will the EA do if it can't complete it's execution? I read that it will skip...
[Deleted]
Please help - I am getting some strange error in the log - how to fix it? I do not know what the failed list is for. Should I reinstall the metatrader? 2014.05.03 10:11:15.029 Signal: '2089074194': failed get list of signals,connection error 2014.05.03 10:10:53.651 '2089074194': previous successful...
[Deleted]
  EA with custom indicator  (19   1 2)
Can someone help me? I want to use the super trend indicator in my EA. If the trend is down he should open a sell trade and if the trend is up he should open a buy trend. I only need this simple method to understand the logic about that because I never work with an indicator and yes I am a beginner...
[Deleted]
Hi. I can't solve this issue. I have to build an indicator that draws price ratio between two pairs and a Bollinger Bands or Envelopes. I can draw Bolinger Bands without any problem but there is an issue drawing Envelopes... Using debbugger seems that for cycle is not working properly.... Then I...
  Compiling Error  (10)
I request if some one help me in compiling and making error free for attached code, This is my first time to open the programe file and write code from seen video's. Ajay
Hi all I'm struggling with all the string functions. How to get the 3 first letters of the Symbol() How to get the last 3. Example... EA is runing on GBPNZD string Currency_1 = GBP;string Currency_2 = NZD; Cheers
Has anybody tried to delete the o.m. folder to start mt4 only /portable ? It seems to me that many files are doubled with the problem which to use, is actual ... Success? Gooly
Say for example its the opening of a bar on an m5 chart, currencies will move (up/down or remain flat). Are there currencies that (always) move first? Do some(always move a little bit later? Help, advise, links. Appreciated. Thankx.
  EA won't place a trade  (27   1 2 3)
Ok Just starting out with coding here, and decided to make a very simple program just to play around with and test. All I want it to do is open a trade, yet, in forward testing, it doesn't open a trade when the criteria is met. Anyone can tell me why?? Here is the code for start int Start(){double...
[Deleted]
  I'm going crazy!  (4)
double za = 100*67/750, zb = 100*142/250;Alert(DoubleToString(za,2), "  ", DoubleToString(zb,2)); The program shows me: za = 8.00 and zb = 56.00 instead my calculator displays: za = 8.93 and zb = 56.80 Why? Why? Why? Why? Why?
[Deleted]
How is this possible? I'm getting a few ordermodify error 130 here and there even though I have my stoploss set to 0
[Deleted]
Hi, I want to collect data for daily chart high/low occurring time Say, Last day high occurred at 15:15 in 15TF chart. So i want to open a csv file, where it will write the high, low, high time, low time in different column. I coded this one taking help from forum. But it shows error